Skip to main content
Version: Streamsheets 3.0

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

NameTypeDescription
TextOrJSONString or JSONThe text to send or a JSON which contains the text and additional required or optional parameters
Subject (optional)StringThe subject of the email. Not required if specified within passed JSON.
ToContact (optional)StringThe recipient`s email address. Not required if specified within passed JSON.
FromContact (optional)StringAn email address used to deliver the message. Not required if specified within passed JSON.
ResponseTarget (optional)TargetSpecify inbox, outbox, cell or cell-range to write any response to.

Return

TypeDescription
Boolean,Result,ErrorRequest result if no target is specified or TRUE. In case of an error the corresponding error-code is returned.

Examples

AB
1API-Keytwilio-api-key
2Messagehello email
3Subjecttest
4Toinfo@dummy.com
5Fromno@reply.com
FormulaResultComment
=TWILIO.EMAIL.SEND(B2,B3,B4,B5,INBOX())
Sends an email with text "hello email" and subject "test" to info@dummy.com and shows response in inbox.