我目前正在开发一个具有登录和注册功能的网站。现在,客户希望通过电子邮件发送给他的所有用户信息,我不知道如何将数据库用户信息发送到他的电子邮件中。如果有人知道如何做到这一点,请帮助我。
答案 0 :(得分:0)
您可以使用邮件程序库将用户数据发送到客户端。我之前亲自使用过PHPMailer。
以下是他们的github页面的一个例子:
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('joe@example.net', 'Joe User'); // Add a recipient
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
另外还有php mail
函数http://php.net/manual/en/function.mail.php。
mail('client@email.com', 'New user: username', 'somebody registered');