从PHP页面使用GMail SMTP服务器发送电子邮件涉及到的知识点包括:
以下是一个简单的PHP代码示例,用于通过GMail SMTP服务器发送电子邮件:
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@gmail.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->addAddress('ellen@example.com'); // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$mail->isHTML(true); // Set email format to HTML
$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';
}
在这个示例中,我们使用了PHPMailer库来发送电子邮件,它是一个流行的PHP邮件处理库。我们配置了GMail SMTP服务器的相关信息,并指定了发件人、收件人、抄送、密送等信息,然后指定了邮件的主题和正文内容,最后通过send()
方法发送邮件。
需要注意的是,由于GMail SMTP服务器的安全性限制,我们需要在GMail账户中开启“允许不够安全的应用”才能使用GMail SMTP服务器发送邮件。另外,还需要注意遵守GMail的使用条款和政策,避免发送垃圾邮件或违反相关法律法规。
领取专属 10元无门槛券
手把手带您无忧上云