gpt4 book ai didi

自定义 php 函数中的 PHPMailer

转载 作者:搜寻专家 更新时间:2023-10-31 21:01:35 24 4
gpt4 key购买 nike

我制作了一个自定义类函数来设置PHPMailer 所需的基本信息(因此我不需要每次都输入它)。这是函数的确切代码。

<?php

class PHPMailer {

public static function send() {// I will just add here the addAddress
require_once 'mail/PHPMailerAutoload.php';

$mail = new PHPMailer;

$mail->isSMTP();
$mail->SMTPDebug = 0;
$mail->Debugoutput = 'html';
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = "validusername";
$mail->Password = "validpassword";
$mail->setFrom('validusername', 'Valid Username');
$mail->addAddress('googol8080@gmail.com', 'Googol');

$mail->Subject = "Subject";
$mail->Body = "<a href=\"www.google.com\">www.google.com</a>";
$mail->IsHTML(true);

if (!$mail->send()) {
return "Error sending message" . $mail->ErrorInfo;
} else {
return "Message sent!";
}
}
}

到目前为止它在我的本地主机上工作,但我有问题:

  • 这是一个好的做法吗?
  • 代码可以吗?
  • 这有什么缺点吗?
  • 如果此处需要优化性能,我需要做什么才能实现?

我真的是 PHP 和 PHPMailer 的新手,任何小的回答都可能对我有帮助,谢谢。

最佳答案

您的代码看起来不错,但更好的方法是调用变量,这样您就不必在每次调用该类时都进行配置。

class phpmailer {
public function sendMail($email, $message, $subject)
{
require_once('../phpmailer/class.phpmailer.php');
require_once('../phpmailer/class.smtp.php');
require_once('../phpmailer/class.pop3.php');
$mail = new PHPMailer();
$mail->isSMTP();
$mail->SMTPDebug = 0;
$mail->SMTPAuth = true;
$mail->SMTPSecure = "ssl";
$mail->Host = "smtp.gmail.com";
$mail->Port = 465;
$mail->addAddress($email);
$mail->Username = "email@gmail.com";
$mail->Password = "email_password";
$mail->setFrom('email_Sent_from@gmail.com', 'Alias');
$mail->addReplyTo("email_to@gmail.com", "Alias");
$mail->Subject = $subject;
$mail->msgHTML($message);
$mail->send();
}
}

然后你可以这样调用它:

$email_send = new phpmailer();
$email_send->sendMail($user_email,$message,$subject);

关于自定义 php 函数中的 PHPMailer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41114809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com