Front.forward(options)
options: object
Field Name | Type | Description |
---|---|---|
to (optional) | String array | An array of recipients, that can be an email address, a phone number, or a Twitter handle. |
cc (optional) | String array | An array of recipients, that can be an email address. |
bcc (optional) | String array | An array of recipients, that can be an email address. |
body (optional) | String | The content of your message. If you have any, a signature will be appended. |
subject (optional) | String | The subject for emails. If omitted, it will reply with the previous subject prefixed by Fw: . |
attachment_uids (optional) | Integer array | An array of attachment UIDs to attach to the new draft. UIDs can be found in the messages of the current selected conversation (UIDs not found in the conversation will be ignored). |
Front.forward({
to: ['[email protected]'],
subject: 'Optional subject',
body: 'Optional body',
attachment_uids: []
});