Here is my code
$form_message .= "Application_Comments" . "\r\n";
ini_set('your_email', 'testsupport@example.com');
$to = "xyz@gmail.com";
$subject = "Collaboration";
$your_email = 'testsupport@example.com';
$headers = "From: $your_email" . "\r\n";
$headers .= "Cc:abc@yahoo.com,efg@gmail.com"."\r\n";
$headers .= "Reply-To: $your_email" . "\r\n";
if(mail($to,$subject,$form_message,$headers))
{
echo " Delete Mail Sent Successfully";
}
else
{
echo "Delete Mail not sent";
}
if I execute above code I am not receiving any mail even 'To' mail is also not getting.
If I use one mail address in cc I am getting mail, but 'To' mail was not received
can any one help me on this?