TECHIES WORLD

For Techs.... Techniques.... Technologies....

ApacheCpanelEximLinuxPHP

Php Mail Sending Script Examples

Sending Mail from PHP Using SMTP Authentication


<?php
require_once "Mail.php";
$from = "Sender <sender@example.com>";
$to = "Recipient <recipient@example.com>";
$subject = "Test";
$body = "Hi,\n\Test Mail";
$host = "mail.example.com";
$username = "smtp_username";
$password = "smtp_password";
$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("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
?>


 

Sending Mail from PHP Using SMTP Authentication and SSL Encryption


<?php
require_once "Mail.php";
$from = "Sender <sender@example.com>";
$to = "Recipient <recipient@example.com>";
$subject = "Hi!";
$body = "Hi,\nTest Mail";
$host = "ssl://mail.example.com";
$port = "465";
$username = "smtp_username";
$password = "smtp_password";
$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'port' => $port,
'auth' => true,
'username' => $username,
'password' => $password,
'socket_options' => array('ssl' => array('verify_peer_name' => false, 'verify_peer' => false, 'allow_self_signed' => true)),
));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
} else {
echo("<p>Message successfully sent!</p>");
}
?>


 

Leave a Reply