Jump to content

email was not send


yolop

Recommended Posts

i wrote this code

 

<?php
$mail_to='[email protected]';
   $subject_mail='UYYYY';
   $message='XXXXX';



$headers  = "MIME-Version: 1.0 \r\n";
$headers .= "Content-type: text/html; charset=UTF-8 \r\n";
$headers .= "From: [email protected] \r\n";

mail($mail_to, $subject_mail, $message, $headers );
?>

 

but the email will not send

why please?

Link to comment
https://forums.phpfreaks.com/topic/222133-email-was-not-send/
Share on other sites

Your To: address is a gmail address and you are putting a gmail address into the From: address header. If you are not sending this using a gmail mail server, I can guarantee that gmail will discard the email.

 

The From: address must be an address hosted at the sending mail server where your php script is running at.

Link to comment
https://forums.phpfreaks.com/topic/222133-email-was-not-send/#findComment-1149254
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.