Many of our customers are making the switch to use GMail, Microsoft (Office 365) or even Yahoo for business as their email provider. These systems replace older Microsoft Exchange or other in house email solutions.
One issue with this is these cloud services often require more security for the communications, such as authentication with a user id and password and/or SSL or TLS communications.
While the "built in" email API (QtmmSendMail) and commands built around them struggle with SSL and authentication, MAILTOOL (with MAILTOOL Plus) does not, mainly because we ourselves use Google as our email provider and we required a solution for our own applications.
Setting up email to work with these providers can be done one of two ways:
The information you will need for setup for either case will be as follows:
If you're using a PC email client to send emails then all of this information should already be set up in the application. So that is a good place to start when finding this information.
If you mainly use the MAILTOOL (or SPL2EMAIL/SPL2EMAILB) command then setting things up is as easy as changing the defaults for the appropriate parameters so that your new mail router will use the proper settings. The Change Command Default (CHGCMDDFT) command is used as follows:
CHGCMDDFT CMD(MAILTOOL) NEWDFT('SENDWITH(*MAILTOOL)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('MAILRTR(smtp.gmail.com)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('USERTR(*ONLY)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('SSL(*YES)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('PORT(465)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('AUTHUSER(''<userid>''))
CHGCMDDFT CMD(MAILTOOL) NEWDFT('AUTHPW(''<password>''))
The above example would be used for GMail. The following example would be used for Office 365:
CHGCMDDFT CMD(MAILTOOL) NEWDFT('SENDWITH(*MAILTOOL)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('MAILRTR(smtp.office365.com)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('USERTR(*ONLY)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('SSL(*TLS)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('PORT(587)')
CHGCMDDFT CMD(MAILTOOL) NEWDFT('AUTHUSER(''<userid>''))
CHGCMDDFT CMD(MAILTOOL) NEWDFT('AUTHPW(''<password>''))
Remember to replace <userid> and <password> with the appropriate account information for sending the email. If the AUTHUSER parameter doesn't match the FROM address you may have issues. Some systems (like Office 365) lets you set it up so you can send on behalf of another user account, so you will need to set up that if these parameters don't match.
If you are also using SPL2EMAIL you can also run these commands for the SPL2EMAIL and SPL2EMAILB commands.
With the latest version of MAILTOOL configuration files can be used at the global level or the user level.
Our advice is to first change the global default configuration file so that the appropriate information is there for the main sender of your email, port and SSL mode and authentication information.
...
{
"name":"send_with_server_type",
"default":"*MAILTOOL"
},
{
"name":"mail_router",
"default":"smtp.gmail.com"
},
{
"name":"use_mail_router",
"default":"*ONLY"
},
{
"name":"use_ssl",
"default":"*YES"
},
{
"name":"smtp_port",
"default":"465"
},
{
"name":"from_email",
"default":"info@wheelerdealers.com"
},
{
"name":"from_name",
"default":"Wheeler Dealers Info"
},
{
"name":"smtp_auth_user",
"default":"info@wheelerdealers.com"
},
{
"name":"smtp_auth_password",
"default":"infopassword1234"
},
...
Then, when you copy the configuration for new users all that needs to be changed is the from address, from name, user id and password information in their configuration file.
...
{
"name":"from_email",
"default":"mikebrewer@wheelerdealers.com"
},
{
"name":"from_name",
"default":"Mike Brewer"
}, {
"name":"smtp_auth_user",
"default":"mikebrewer@wheelerdealers.com"
},
{
"name":"smtp_auth_password",
"default":"tattyshiftknob"
},
...
When using configuration files, only one parameter default needs to be changed.
CHGCMDDFT CMD(MAILTOOL) NEWDFT('CONFIG(*DFT)')
When using the MAILTOOL (or SPL2EMAIL/SPL2EMAILB) command and specifying *DFT for the configuration file the file that is used will be /bvstools/mailtool/config/userid/defaults.json (where userid is the user's User ID). If this file doesn't exist, then the supplied default configuration file /bvstools/mailtool/config/defaults.json will be used. See this article for more information.
Feel free to contact us if you require any extra help or support.