How to configure SMTP using Active24 service

Description

The setting can be used for testing but also in the case that you haven't got your own SMTP server. You will send e-mails easily using the Active24 service.

Version

All versions of eWay-CRM

Difficulty

Medium

Resolution

You need to already have Active24 account. Then, there is a need to set up the web service properly. The setting must be inserted into the Web.config file.

<add key="SendMail" value="1" />
<add key="sender" value="EMAIL_OF_SENDER" />
<add key="smtp" value="email.active24.com" />
<add key="port" value="587" />
<add key="smtpUser" value="USERNAME" />
<add key="smtpPassword" value="PASSWORD" />
<add key="enableSsl" value="1" />

To test the correct sending of emails, please follow the instructions in this article: How to Check SMTP Configuration.