You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

This tool allows you to send out email with a form attached in PDF format. The only extra configuration needed apart from the normal email plugin would be on the selection of the form to be attached and the desired file name for the attachment as shown on the screenshot below.


Figure 1: Configuring the Export Email Tool


Figure 2: Configuring the email server


Figure 3: Configuring the email content

 
Figure 4: Sample form design


Figure 5: Sample form at runtime


Figure 6: Sample email

Sample attachement

Formatting with CSS

You can format the output with different font size and color with css in the Advanced > Formatting (CSS) field.

 
Example:

//Change all word to blue color
*, .form-cell{
  color:blue;
}

//Change all word to smaller size
*, .form-cell{
  font-size:10px;
}

//Change all label format to underline
* label{
  text-decoration:underline;
}

//Transform all header format to uppercase
.form-section-title{
  text-transform:uppercase;
}
  • No labels