Mail SMTP not working

When sending mail via SMTP in Pulse 5.3.11, mail is not delivered. I checked and found that no sender mail is filled in for the SMTP-server. So many SMTP servers will reject the mail.

To make it working, in the file yourdomain.com/inc/tags/form.php. around lines 132:
replace:
$mail->From = $sender_email;
$mail->FromName = $sender_name;

with:
$mail->From = \pulsecore\wedge\config\get_json_configs()->json->mail_inputs->Email;
$mail->FromName = \pulsecore\wedge\config\get_json_configs()->json->mail_inputs->Name;

And fill in the sender name and sender email address in the admin section of your pulse site in the forms section, the upper two inputs fields.

2 Likes

Thanks for bringing this up @douwe_yntema. Will check this out and keep you posted.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.