PHP 8.1.33
Preview: sendmail.phps Size: 1.20 KB
/home/jambtst2015/public_html/giraffeng.com/admin/mail/examples/sendmail.phps

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>PHPMailer - sendmail test</title>
</head>
<body>
<?php
require '../class.phpmailer.php';

//Create a new PHPMailer instance
$mail = new PHPMailer();
// Set PHPMailer to use the sendmail transport
$mail->IsSendmail();
//Set who the message is to be sent from
$mail->SetFrom('from@example.com', 'First Last');
//Set an alternative reply-to address
$mail->AddReplyTo('replyto@example.com','First Last');
//Set who the message is to be sent to
$mail->AddAddress('whoto@example.com', 'John Doe');
//Set the subject line
$mail->Subject = 'PHPMailer sendmail test';
//Read an HTML message body from an external file, convert referenced images to embedded, convert HTML into a basic plain-text alternative body
$mail->MsgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->AddAttachment('images/phpmailer_mini.gif');

//Send the message, check for errors
if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}
?>
</body>
</html>

Directory Contents

Dirs: 3 × Files: 11

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
scripts DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
styles DIR
- drwxr-xr-x 2024-11-22 17:53:01
Edit Download
22.62 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
693 B lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.49 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
6.01 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
7.46 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.13 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.95 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
2.25 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.20 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.94 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download
1.81 KB lrw-r--r-- 2024-11-22 17:53:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).