Directory : /home/content/12/10898412/html/pitujjain/ |
Current File : /home/content/12/10898412/html/pitujjain/testmail.php |
"; $to = "Geek4Support Recipient"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; $host = "mail.pitujjain.in"; $username = "[email protected]"; $password = "[email protected]"; $headers = array ('From' => $from, 'To' => $to, 'Subject' => $subject); $smtp = Mail::factory('smtp', array ('host' => $host, 'auth' => true, 'username' => $username, 'password' => $password)); $mail = $smtp->send($to, $headers, $body); if (PEAR::isError($mail)) { echo(" " . $mail->getMessage() . "
"); } else { echo("Message successfully sent!
"); } ?>