TWILIO.EMAIL.SEND
Premium
Experimental
Sends an email to specified contact. For Please refer to official Twilio API to specify a JSON object containing additional parameters. Please refer to mail send API for more information about available and supported options (as of 2021-07-30).
Syntax
=TWILIO.EMAIL.SEND(TextOrJSON, [Subject], [ToContact], [FromContact], [ResponseTarget])
Arguments
| Name | Type | Description | 
|---|---|---|
| TextOrJSON | String or JSON | The text to send or a JSON which contains the text and additional required or optional parameters | 
| Subject (optional) | String | 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) | Target | Specify inbox, outbox, cell or cell-range to write any response to. | 
Return
| Type | Description | 
|---|---|
| Boolean,Result,Error | Request result if no target is specified or TRUE. 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. |