| Current Path : /var/www/html/vippaan/ |
| Current File : /var/www/html/vippaan/mail.php |
<?php
// the message
$msg = "First line of text\nSecond line of text";
// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,70);
// send email
mail("hackbaby1996@gmail.com","My subject",$msg);
?>