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 = "
[email protected]";
$to = "
[email protected]";
$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);