Responding to mail

Purpose

These commands are used to respond to an email.

Request URL 

Reply to an email

Reply To 

clientsdk.dispatch("mailActions", { msgId: < >, mode: "reply", replyContent: "" }).then(function(mailObj){ });

Reply To All 

clientsdk.dispatch("mailActions", { msgId: < >, mode: "replyall", replyContent: "" }).then(function(mailObj){ });

Forward an email

Used to forward a particular email using the message ID of the email.

clientsdk.dispatch("mailActions", { msgId: < >, mode: "fwdi", composeData: { "TO": "" } }).then(function(mailObj){});