nicolas.brieuc28
New Member
- Messages
- 3
- Reaction score
- 0
- Points
- 1
Hi,
I have been trying unsuccessuly to send an email with the following php command:
$to = 'xxx@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: contact@xxx.x10.mx' . "\r\n" .
'Reply-To: contact@xxx.x10.mx' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
No error, but no emal sent...
Is there any known issue with the sending of email?
Thanks
Nicolas
I have been trying unsuccessuly to send an email with the following php command:
$to = 'xxx@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: contact@xxx.x10.mx' . "\r\n" .
'Reply-To: contact@xxx.x10.mx' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
No error, but no emal sent...
Is there any known issue with the sending of email?
Thanks
Nicolas