PHP Email Class
1.0.0
此类允许您使用 PHPMailer 库和 SMTP 发送电子邮件。
内普森制造
require_once ' path/to/Email.php ' ;
要发送电子邮件,请使用sendMail()
方法。该方法采用以下参数:
$ email = new Email ( ' smtp.example.com ' , ' username ' , ' password ' , ' 587 ' , ' tls ' );
$ to = " [email protected] " ;
$ subject = " Test Email " ;
$ body = " This is a test email sent using PHPMailer. " ;
$ from = " [email protected] " ;
$ fromName = " Sender " ;
$ attachments = [ ' /path/to/file1.jpg ' , ' /path/to/file2.pdf ' ];
if ( $ email -> sendMail ( $ to , $ subject , $ body , $ from , $ fromName , $ attachments )) {
echo " Email sent successfully with attachments. " ;
} else {
echo " Failed to send email. " ;
}
您始终可以通过发出拉取请求并添加更多功能或修复错误来为课程做出贡献。
此类是根据 MIT 许可证授权的开源软件。