Hello
Although I have extensive experience I cannot expalin this.
A client of mine has en email address that cannot be send inside an email.
Here is the program (I must list my client’s address for the test, please do not use or misuse it):
[php]<?php
$your_email = "[email protected]"; // Put here your own email
// All messages get sent except number 2
mail($your_email ,“Subject 1”,“Message”);
mail($your_email ,“Subject 2","[email protected]”); // This message never gets sent. Do you know why???
mail($your_email ,“Subject 3”,“Message”);
mail($your_email ,“Subject 4”,“massimo@impresa_baietti.com”);
mail($your_email ,“Subject 5”,“Message”);
mail($your_email ,“Subject 6","[email protected]”);
mail($your_email ,“Subject 7”,“Message”);
mail($your_email ,“Subject 8","[email protected]”);
mail($your_email ,“Subject 9”,“Message”);
// Please do not misuse the real email (Subject 2)
// The owner of the email address knows nothing of this problem
?>[/php]