Section | ||||||||
---|---|---|---|---|---|---|---|---|
|
Email Addresses
You can enter multiple comma or semicolon separated addresses in the To, Cc, Bcc fields and a single Reply To address. The email address may either be a static address such as info@frevvo.com or a dynamic address by using template syntax such as {person}@frevvo.com if you want the name dynamic and the domain static or {emailAddress} to make the full email address dynamic.
...
- Send the data as a PDF attachment or other image type using the Send Snapshot dropdown. The image type options are PDF, PNG or JPG. Select the blank option from the dropdown to exclude this attachment in the submission.
- Attach an XML data document using the Send Data checkbox. This checkbox is checked by default. Uncheck it to exclude the XML data document in the email.
- Attachments uploaded to your form/flow are included in the email if the Send Files checkbox is checked. This checkbox is checked by default. Uncheck it to exclude attachments in the email.
- Attachments uploaded to your form/flow are included if the Send Files checkbox is checked. This checkbox is checked by default. Uncheck it to exclude attachments in the submission.
If you have Pixel Perfect mapped PDFs (ex: W-4, I-9 etc…) associated with your forms/flows, choose the action you want to take from the Send Gen Forms control :
•Check All to send all the Pixel Perfect PDFs. This is the default value.•Check None to send none of the PDFs•Check Select to display a list of all the PDFs associated with your form/flow. Click the ones you want to be part of the submission. Hold down the Shift key then click the files in the list to select all PDFs or hold the control key and click specific PDFs.
We suggest you uncheck "Send Data" if you don't need the xml attachment. Also leave the "Send Snapshot" dropdown blank if you do not need the form image attachment. Both options have small performance and memory overheads. So don't select them if you're not going to use these attachments.
Example using the Email wizard
Here is an example using the dynamic template {emailAddress}. You must name one of your form controls emailAddress.
Step 1: First name one of your controls emailAddress. You do this by entering a that string into the control's Name property as shown below.
Step 2: Next, open the Doc Action Email Wizard. Replace jSmith@gmail.com with Enter the template: {emailAddress} in the To: field
Also you can specify an email address containing a template and static text such as: {customer}@frevvo.com. In this case the value in the form field named "customer" would replace {customer}. If the user enters "Joe" into the customer form field the submission would be emailed to Joe@frevvo.com.
The form image snapshot attachment can be Pdf, Png, Jpeg or Tiff. In-house customers must install the Tiff generator in order to see the Tiff option.
Step 3: The email wizard lets you set your own email subject and message. The message body can contain html and css giving you the ability to generate very nicely formatted emails. Form data values can be added to the message subject and body using control template names. Two dropdowns in the wizard make it easy to add control templates. Or for customers preferring the Pdf attachment, the email message body can contain a very simple text message, which is the default.
Here is a sample of formatted message body. Note the use of html.
Code Block |
---|
Dear {FirstName} {LastName} <p> Your loan request in the amount of <b>{LoanAmount}</b> has been received. </p> Sincerly,<br/> <i>The Mortgage Team</i> |
...
Tip |
---|
Note that html "pre" tags are needed around the message body if you use data from textarea controls in your message body. By default any newlines in the textarea are removed by html. This is a feature of html that can be turned off using the html "pre" tag. |
...