An application to send emails from your workflows, with or without attachments.
Company name <email@invopop.com>
by simply connecting the Email app.
If you wish to send emails from your own domain such as Company Name <name@yourdomain.com>
, you will need one of the following:
Connect the Email app.
Configuration โ Apps
, and find Email
from the list of apps to discover. Tap the Connect button to enable.Add Senders
Configure
. You will find a pre-defined email address Invopop Email <email@invopop.com>
. Editing this email address will allow you to customize the Sender name, allowing you to send emails with your company name Company Name <email@invopop.com>
.You can add as many senders as you need by tapping on the Add
button. Email providers other than Invopop will allow you to use your own domain name (after itโs configured with the email provider).Set up your workflow
Send Email
step after you have issued an invoice via the corresponding tax authority and generated a PDF (if required). This will ensure the necessary files are attached, and that the invoice complies with local regulatory requirements.Notification via Email
, this suggestion does not apply, as no files are attached.Automatically add invoice customers
if you wish to send the invoice as an attachment to the customer. This is usually the case for B2C workflows.
If you wish to send the email with attachments to a specific address, tap on the Add
button and write an address in the email field.
3. BCC
BCC stands for Blind Carbon Copy, and is used when you do not want the recipients in this field to appear in the message header. Other recipients wonโt know that a copy was sent to these addresses. This is useful to send a copy of the invoice to yourself, for example.
4. Reply To
The โReply Toโ field requires a valid email address where recipientsโ responses will be directed. This field determines where replies go, regardless of the sending address.
5. Subject
The email subject field is a brief heading that summarizes your messageโs purpose. This field allows you to use template variables in order to customize the subject for the recipient.
.zip
file.
args
data object with custom variables you want to inject into your email. You will then introduce the variable into the emailโs subject or body with the following syntax: {{args.variable_name}}
. If you need to provide a fallback in case the variable is not present, we recommend using the following syntax: {{ or args.value "Default value" }}
.
Configure your email template
Customer Name
and Full Code
) and custom variables {{args.payment_link}}
.Body field example with custom arguments
Execute the job with custom args
args
) are key-value pairs tailored to specific applications, in this case we are creating a payment_link
which will be available to the Email App. Create the job via API with the proper payload:Verify result
{{args.variable_name}}
syntax in email templates for custom variablesargs
object when executing the job via APIIs Email in Sandbox limited in any way?
[Invopop Test]
will be prepended to the subject.How do I set up Gmail as my SMTP server
How do I set up iCloud Mail
How do I set up Microsoft 365
How do I set up Amazon SES
My custom variable displays as <no value>
args
key/value pair was not set. Ensure that you pass a value, even if itโs empty:args
by using a fallback: