
Alejandro García González - 2007-11-21 15:26:28 -
In reply to message 1 from Christine Salib
Hi:
The installation is very simple; you only have to copy "nomad_mimemail.inc.php" anywhere in your project tree.
When you need use it, only need to include and declare the class in your code:
When you need to use it, you only need to include it and declare the class in your code:
include ('nomad_mimemail.inc.php');
$mimemail = new nomad_mimemail();
And last, you can send mail this way:
$from = "me@mail.com";
$to = "friend@mail.com";
$subject = "Hello friend";
$text = "This is my Text Plain Message";
$html = "<p><strong>This</strong> is mi message in HTML</p>";
$mimemail->new_mail($from, $to, $subject, $text, $html);