E-Mail of (SSL) SMTP

General support regarding TimeTrex, such as
configuring policies/taxes or processing payroll.
Locked
retched
Posts: 43
Joined: Mon Jan 24, 2011 1:08 am

E-Mail of (SSL) SMTP

Post by retched »

I have a question. I saw this in another thread and wanted to know is there a way to use SMTP over SSL? Or is simply using the port 587 enough?
shaunw wrote:

Code: Select all

[mail]
delivery_method = smtp
smtp_host=smtp.gmail.com
smtp_port=587
smtp_username=john.doe@gmail.com
smtp_password=mypass
If you are using Linux or have a local SMTP server setup that automatically handles mail, you could try using this instead:

Code: Select all

[mail]
delivery_method = mail
shaunw
Posts: 7839
Joined: Tue Sep 19, 2006 2:22 pm

Re: E-Mail of (SSL) SMTP

Post by shaunw »

It should work is you specify the settings like this:

Code: Select all

smtp_host="ssl://mail.example.com";
smtp_port=465
Locked