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.”;
?>

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...