Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Figure 3: Configuring the email content

 
Figure 4: Sample form design

...


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:

Code Block
langhtml

//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;
}