2020.2

Table Of Contents
l The SendGrid plugin is not installed by default. It is available for download on the
Resource Center (help.objectiflune.com). Make sure that the version number of
Workflow and the plugin are the same, to avoid compatibility issues.
l To be able to send email using the SendGrid plugin, you need a SendGrid account
and API key.
The SendGrid plugin allows you to:
l Tag the emails with category names, which help organize your email analytics (see About
categories).
l Set a time at which the emails should be sent (see Scheduling parameters).
l Add custom headers specifying specific handling instructions for your email. (To get an
idea of what these could be used for, see SendGrid's blog post about email headers).
Input
Extra attachments
To specify an extra attachment, you have to use the key/value pair "disposition":"attachment".
To let the plugin know where it can find the attachment, you can either provide a full path
("url"), for example:
[{"url":"file:///C:/Terms-and-Conditions.pdf","disposition":"attachment"}]
or
[{"url":"http://www.example.com/image.png","disposition":"attachment"}]
or a Connect File Store ID ("fileid"), for example:
[{"fileid":100034, "disposition":"attachment"}]
Optionally, you may provide a name ("name") to override the name that the plugin creates for
an extra attachment.
Examples:
[{"fileid":100034,"name":"example.pdf","disposition":"attachment"}]
[{"url":"file:///C:/Terms-and-
Conditions.pdf","name":"terms.pdf","disposition":"attachment"}]
All attachments should be combined in one array:
[{"url":"file:///C:/Terms-and-
Page 700