You are here: Home / FAQ / Tips / How to set web service using Gmail for outgoing e-mails

How to set web service using Gmail for outgoing e-mails

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 Gmail service.

Version

All versions of eWay-CRM

Difficulty

Medium

Resolution

Create a free Gmail account and set your web service properly. The setting must be insert into the Web.config file.

<add key="SendMail" value="1"></add>
<add key="sender" value="EMAIL_OF_SENDER"></add>
<add key="smtp" value="smtp.gmail.com"></add>
<add key="port" value="587"></add>
<add key="smtpUser" value="GMAIL_USERNAME"></add>
<add key="smtpPassword" value="PASSWORD"></add>
<add key="enableSsl" value="1"></add>
Navigation