Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 PHPmailer 我怎样才能知道发送的邮件是否已发送给用户。其实我想知道使用PHP发送邮件的传递状态。可能吗?请告诉我。
你可以尝试这样的事情:
if($mail->send()) { // Do something if email sent successfully }
据我了解,这取决于您的电子邮件服务。如果您使用的是 MailGun 的 API 之类的东西,您可以获得一个交付状态,但如果您只是使用标准 SMTP 服务器,那么检查是否成功发送的电子邮件就差不多了。