This commit is contained in:
2024-07-16 21:48:09 +00:00
parent 31519fe8ad
commit 7ec756f996
42 changed files with 2724 additions and 309 deletions

View File

@@ -1,21 +1,38 @@
<?php
use Symfony\Component\Mailer\MailerInterface;
use Symfony\Component\Mime\Email;
/**
* This example shows sending a message using a local sendmail binary.
*/
class MailerService
{
public static function sendMail(MailerInterface $mailer)
{
//Import the PHPMailer class into the global namespace
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
$email = new Email();
//Create a new PHPMailer instance
$mail = new PHPMailer();
$email
->from('michael.schwab@outlook.com')
->to('michael.schwab@gmx.ch')
->subject('Site update just happened!')
->text('Someone just updated the site. We told them:');
//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'), __DIR__);
//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.png');
$mailer->send($email);
}
//send the message, check for errors
if (!$mail->send()) {
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message sent!';
}