RL
RL Studio

Rise Data Labs

DashboardWorldsEnvironmentsTask designerSessions
  1. Environments
  2. Email

Email

Mailbox with search, read, reply, send, folders, and scored task completion.

ActivemcpCommunicationOperationsProduct
NameDescriptionParameters
delete_emailMove an email to trash.{"type":"object","properties":{"emailId":{"type":"string"}},"required":["emailId"]}
forward_emailForward an email to a recipient.{"type":"object","properties":{"emailId":{"type":"string"},"to":{"type":"string"},"body":{"type":"string"}},"required":["emailId","to"]}
list_contactsList address book contacts.{"type":"object","properties":{}}
list_foldersList mailbox folders.{"type":"object","properties":{}}
mark_as_readMark an email as read.{"type":"object","properties":{"emailId":{"type":"string"}},"required":["emailId"]}
move_emailMove an email to a folder.{"type":"object","properties":{"emailId":{"type":"string"},"folder":{"type":"string"}},"required":["emailId","folder"]}
read_emailRead a full email by id; marks it read.{"type":"object","properties":{"emailId":{"type":"string"}},"required":["emailId"]}
reply_emailReply to an email by id.{"type":"object","properties":{"emailId":{"type":"string"},"body":{"type":"string"},"replyAll":{"type":"boolean"}},"required":["emailId","body"]}
search_inboxSearch emails. Supports from:, to:, subject:, is:unread, is:read, folder:, and free-text terms.{"type":"object","properties":{"query":{"type":"string"},"limit":{"type":"integer"}},"required":["query"]}
send_emailSend a new email from you@company.com.{"type":"object","properties":{"to":{"type":"string"},"subject":{"type":"string"},"body":{"type":"string"},"cc":{"type":"string"}},"required":["to","subject","body"]}