Jump to content
  • 0

Emails Not Going Through


Question

Posted

Hello

Testing some emails to clients but they are not going through, I am getting this message:

"The email failed to send due to a configuration issue." I am using PHP Mail.

Can someone help with this.

Thank you in advance

3 answers to this question

Recommended Posts

  • 0
Posted

Do you have a video mate, if you are using PHP mail it shouldn't have a configuration error.

You can try:

<?php
$to = your@emailaddress.here“; // <– replace with your address here
$subject = Test mail”;
$message = Hello! This is a simple test email message.”;
$from = sender@emailaddress.here“;
$headers = From:” . $from;
mail($to,$subject,$message,$headers);
echo Mail Sent.”;
?>

 

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...