PHPMailer is most popular mailer in PHP. Using PHP mailer you can send the mail easily. You can Download PHPMailer from here. PHPMailer send mail using three different types of method.
When you use PHPMailer in yahoo hosting. You can face a little bit problem with the PHPMailer. Because PHPMailer is not working with the Yahoo hosting. So it is better to use simple PHP mail function.
You can use the code for simple mail function:
[sourcecode]
<?php
$to="name@your_domain.com";
$sub = "PHP Simple Mail.";
$mes = "<html><body><h1>Test Mail</h1></body></html>";
$header = "Content-type: text/htmlnReply-To:[email protected]";
mail($to,$sub,$mes,$header);
?>
[/sourcecode]