<?php
$to = "adi.mathur2@facebook.com, ";
$subject = " Hi ";
$message = " this time.. ";
$from = "aditya169@facebook.com";
$headers = "From: $from\r\n";
$headers .= "Return-Path: aditya169@facebook.com\r\n";
$headers .= "Content-Type: text/plain\r\n";
mail($to,$subject,$message,$headers,"-f$from");
echo " successful!!";
?>
I am trying to send this email but it doesn't send to the Facebook Email. When I change the to field to my Gmail ID then I can receive the Email.
Is it that the email is marked as Spam? or something? I cant even see the email in the Other folder on Facebook.