ReePrime
Send Email via PHP - Urdu / Hindi

Hosted by Dailymotion. For legal issues report at the Copyright Center, report us on DMC, or use the Instant Removal tool.

Send Email via PHP - Urdu / Hindi

E
Elim Ka Adda

2 Views • Dec 15, 2013

Description

$from = "[email protected]";
$to = "[email protected]";
$sub = "This is my subject.";
$msg = "The simplest way to send an email with PHP is to send a text email.";


$headers = 'From: '.$from."\r\n".

'Reply-To: '.$from."\r\n" .

'X-Mailer: PHP/' . phpversion();

mail($to, $sub, $msg, $headers);


if(mail){

echo "Email Sent to ".$to;
}
else {
Echo "Error";
}