To display the Email Document button, set the values for the emailDefaults parameter in the config.js file as in the example below:

Set the prepopulatedForm parameter to the email address that you want to configure in the config.js file as in the example below:

var prepopulateFrom = prepopulatedEmail@domain.com;

Set the parameters below in the web.xml file to set the values for your email system.

<init-param>
<param-name>smtpServer</param-name>
<param-value>...</param-value>
</init-param>

<init-param>
<param-name>smtpUsername</param-name>
<param-value>...</param-value>
</init-param>

<init-param>
<param-name>smtpPassword</param-name>
<param-value>...</param-value>
</init-param>