Some SMTP servers doesn’t have tls or ssl support, but you can still use them in your Sendy app by disabling a line of code in Sendy’s phpmailer config.
- Go to folder
includes/create
- Open files
test-send.php & send-now.php
- Find line
$mail->SMTPSecure = $smtp_ssl;
then uncomment by prepending//
on the line
It should look like this:
1 2 3 4 5 6 7 8 |
$mail->IsSMTP(); $mail->SMTPDebug = 0; $mail->SMTPAuth = true; //$mail->SMTPSecure = $smtp_ssl; $mail->Host = $smtp_host; $mail->Port = $smtp_port; $mail->Username = $smtp_username; $mail->Password = $smtp_password; |