Documentation

Trace:

(workflow)

Configure Mailserver

Translations of this page:

This is an old revision of the document!


The workflow engine contains functions for sending emails. These functions need a valid mail server configuration in order to work properly. Simply add the mail settings to the application configuration. The following settings are possible:

config.xml
<?xml version="1.0" encoding="UTF-8"?>
 
<application>
 
  ...  
 
  <mail>
  	<smtp>
  	  <host>smtp.gmail.com</host>
  	  <port>587</port>
  	  <username>user.name@gmail.com</username>
  	  <password>password$secret</password>
  	  <tlsenabled>true</tlsenabled>
  	  <defaultsender>From &lt;user.name@gmail.com&gt;</defaultsender>
  	</smtp>
  </mail>
 
</application>
This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information