Author Topic: SSL not working  (Read 2290 times)

Offline dtrue

  • Newbie
  • *
  • Posts: 1
SSL not working
« on: July 02, 2014, 08:24:02 PM »
Hello all,

I'm trying to send email via smtp.  When I send it over port 80, it works fine.  When I try to send it via ssl  (which my hosting provider says it supports on port 465), I get the error "connection refused".

$config['smtp_server'] = 'smtp.[mydomain].net';  //I've also tried 'ssl://smtp.[mydomain].net' and 'ssl://smtp.[mydomain].net:465'

$config['smtp_port'] = 465;

$config['smtp_user'] = '%u';

$config['smtp_pass'] = '%p';

Thanks all