Hi
I am running out of ideas - here is what I am seeing
- When using a exp✉️contact_form I get a “Thank you” success msg, but no email is send.
- When trying to send with Communications Tool, I get errors with both sendmail and PHPmail settings:
Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.
or
Unable to send email using PHP Sendmail.
When I enable PHP in the same template and paste this into the template
<?php
$to = "[email protected]";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "[email protected]";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>it is successfully send out.
So my understanding is that phpmail seems to work and EE is somehow passing the values differently.
I have switched debug on but don’t get any errors when sending from the contact form.
Where do I go from here to further debug?