File "mail01.php"

Full Path: /home/analogde/www/JAVA/vcal/mail01.php
File size: 224 bytes
MIME-type: text/x-php
Charset: utf-8

<?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("patrice.delpy@onsemi.com","My subject",$msg);
?>