mlsto Posted April 10, 2017 Report Posted April 10, 2017 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 Quote
0 mlsto Posted April 11, 2017 Author Report Posted April 11, 2017 I got it worked out Thank you Paul and Michael 2 Quote
0 Michael Posted April 10, 2017 Report Posted April 10, 2017 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.”; ?> Paul and mlsto 2 Quote
0 mlsto Posted April 11, 2017 Author Report Posted April 11, 2017 Michael Thanks for the answer, let me get a video and get back. Looks like all emails I send not going, tried resending but gives the error. Appreciate Quote
Question
mlsto
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.