SMTPMAIL: add missing function set_from

This commit is contained in:
sparkyx 2025-10-24 11:52:58 +02:00
parent 8df52585d4
commit 69b807e2eb

View file

@ -68,7 +68,10 @@ class SMTPMail
{
return $this->phpmailer;
}
public function set_from($from)
{
$this->phpmailer->setFrom($from);
}
public function setPhpmailer($phpmailer): PHPMailer
{
$this->phpmailer = $phpmailer;