Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Changed SMTPAutoTLS to false.
  • Loading branch information
ghermans committed Apr 10, 2016
1 parent 19a88a5 commit e4b7da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/phpmailer/class.phpmailer.php
Expand Up @@ -254,7 +254,7 @@ class PHPMailer
* Be aware that in PHP >= 5.6 this requires that the server's certificates are valid.
* @var boolean
*/
public $SMTPAutoTLS = true;
public $SMTPAutoTLS = false;

/**
* Whether to use SMTP authentication.
Expand Down

1 comment on commit e4b7da5

@nikoup
Copy link

@nikoup nikoup commented on e4b7da5 Apr 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also must enable sendmail and not smtp

Please sign in to comment.