Help Center Configure Email Settings

Configure Email Settings

Configuring email settings

For the e-mail to work you must observe the following 3 points:

  1. Configure SMTP-Settings in [Main-Window] / [Settings].
  2. Configure a destination in Register [Destination] with the [Send mail] option.
  3. Configure a Sender and Recipient email address in register [Email]

HTML Email:

An example of an HTML email looks like this:

Email Example

Use the following code:

<!DOCTYPE html>
<html>
<head>
    <meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
    <style type='text/css'>
        body {
            font-family: "Calibri","sans-serif";
            color: black;
        }
        .medium {
            font-size: 9pt;
            font-family: "Calibri","sans-serif";
            color: #666666;
        }

        .small {
            font-size: 9pt;
            font-family: "Calibri","sans-serif";
            color: #666666;
        }

        .xsmall {
            font-size: 9pt;
            font-family: "Calibri","sans-serif";
            color: #666666;
        }
    </style>
</head>

<body>
    Hello!<br />
    <br />
    Here is your report...<br />
    <br />
    <div class="medium">
        Kind Regards<br />
        <br />
        Department | Company<br />
        Street | Postcode City | Country<br />
        <b>Phone:</b> <span class=blue>+12 23456789 | <strong>Email:</strong> <a href="mailto:example@example.com">example@example.com</a></span>
    </div>
    <div class="small">
        <strong>VAT: </strong>
    </div>
    <br />
    <div class="xsmall">
        <strong>Disclaimer:</strong><br />
        <strong>EN:</strong> The information contained in this communication from the sender is confidential.<br />
        It is intended solely for use by the recipient and others authorized to receive it.<br />
        If you are not the recipient, you are hereby notified that any disclosure, copying, distribution or taking action in relation of the contents of this information is strictly prohibited and may be unlawful.
    </div>
</body>
</html>

Here:

Email Example Code