Sendgrid
Last updated
Last updated
The Sendgrid service allows you to send automated emails from your app using the .
NOTE: All profile settings are encrypted and stored in Zingy's cloud infrastructure.
NOTE: All connection settings are encrypted and stored in Zingy's cloud infrastructure.
Enter the from address to use when sending the email using this connection.
Use this command to send a plain-text email using the Sendgrid service.
When invoking this operation, an object with the following properties is required:
toAddr
ccAddr
bccAddr
subject
The subject for the email.
msg
The email's message or body.
customProps
The Send Email (Plain Text) command does not provide any output beyond the Success/Fail status.
Use this command to send an email in HTML format using the Sendgrid service.
When invoking this operation, an object with the following properties is required:
toAddr
ccAddr
bccAddr
subject
The subject for the email.
msg
The email's message or body in HTML format.
msgText
The email's message or body in text format. Used for cases where the recipient's email client is unable to show the HTML formatted message.
customProps
The Send Email (HTML) command does not provide any output beyond the Success/Fail status.
Use this command to send an email using a pre-defined template in your Sendgrid account.
When invoking this operation, an object with the following properties is required:
toAddr
ccAddr
bccAddr
subject
The subject for the email.
templateId
The identifier of the Sendgrid template.
substitutions
Object containing dynamic dynamic substitutions.
substitutionWrappers
Optional. Defaults to {{ and }}. A list containing the starting and ending wrappers for identifying substitution properties.
customProps
The Send Email (Template) command does not provide any output beyond the Success/Fail status.
To access the client initialized with credentials saved on this Sendgrid service connection, see the following example:
You may also initialize a separate Sendgrid client, by specifying account credentials directly:
Enter your .
The block is available in both and . Using this block you can add logic to trigger the operations/commands supported by the Sendgrid service.
For security purposes, all operations/commands offered by the Sendgrid service are only available in and cannot be used in .
or
One or more recipient email addresses. For multiple addresses use a .
or
Optional. One or more CC email addresses. For multiple addresses use a .
or
Optional. One or more BCC email addresses. For multiple addresses use a .
Optional. For advanced users, this specifies an object with properties based on parameters used by the .
or
One or more recipient email addresses. For multiple addresses use a .
or
Optional. One or more CC email addresses. For multiple addresses use a .
or
Optional. One or more BCC email addresses. For multiple addresses use a .
Optional. For advanced users, this specifies an object with properties based on parameters used by the .
or
One or more recipient email addresses. For multiple addresses use a .
or
Optional. One or more CC email addresses. For multiple addresses use a .
or
Optional. One or more BCC email addresses. For multiple addresses use a .
Optional. For advanced users, this specifies an object with properties based on parameters used by the .
In your app's Cloud Flow Web Hooks and Background Tasks, the block can be used to access and implement advanced functionality related to the Sendgrid email service.
After the sgMail
object is initialized, you can use it to call into the .
If you need to utilize Sendgrid API beyond simply sending emails, please see .