TWILIO.EMAIL.SEND
This is a premium feature.
info
This function is experimental and subject to change or review.
Sends an email to specified contact. For Please refer to official Twilio API to specify a JSON object containing additional parameters. Please refer to https://www.twilio.com/docs/sms/send-messages for more information about available and supported options (as of 2021-07-30).
Syntax
=TWILIO.EMAIL.SEND(APIKey, TextOrJSON, [Subject], [ToContact], [FromContact], [ResponseTarget])
Arguments
Name | Type | Description |
---|---|---|
APIKey | An API key or JSON to authorize against Twilio service | |
TextOrJSON | The text to send or a JSON which contains the text and additional required or optional parameters | |
Subject (optional) | The subject of the email. Not required if specified within passed JSON. | |
ToContact (optional) | String | The recipient`s email address. Not required if specified within passed JSON. |
FromContact (optional) | String | An email address used to deliver the message. Not required if specified within passed JSON. |
ResponseTarget (optional) | Specify inbox, outbox, cell or cell-range to write any response to. |
Return
A unique random request ID which can be used with REQUESTINFO to check the state of the request. In case of an error the corresponding error-code is returned.
Examples
A | B | |
---|---|---|
1 | API-Key | twilio-api-key |
2 | Message | hello email |
3 | Subject | test |
4 | To | info@dummy.com |
5 | From | no@reply.com |
Formula | Result | Comment |
---|---|---|
| Sends an email with text "hello email" and subject "test" to info@dummy.com and shows response in inbox. |