使用 PHPMailer 发送邮件
使用 PHPMailer 发送邮件
PHPMailer 的官方网站:http://phpmailer.worxware.com/
PHPMailer GitHub 下载地址:https://github.com/Synchro/PHPMailer
使用方法,详见代码清单:
<?php header('Content-Type:text/html;Charset=utf-8'); require './PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); // 设置邮件使用SMTP $mail->Host = 'mail.wanzhao.com'; // 邮件服务器地址 $mail->SMTPAuth = true; // 启用SMTP身份验证 $mail->CharSet = "UTF-8"; // 设置邮件编码 $mail->setLanguage('zh_cn'); // 设置错误中文提示 $mail->Username = 'wanzhao@wanzhao.com'; // SMTP 用户名,即个人的邮箱地址 $mail->Password = 'www123456'; // SMTP 密码,即个人的邮箱密码 $mail->SMTPSecure = 'tls'; // 设置启用加密,注意:必须打开 php_openssl 模块 $mail->Priority = 3; // 设置邮件优先级 1:高, 3:正常(默认), 5:低 $mail->From = 'liruxing@wanzhao.com'; // 发件人邮箱地址 $mail->FromName = '李茹星'; // 发件人名称 $mail->addAddress('liruxing1715@163.com', 'Lee'); // 添加接受者 $mail->addAddress('ellen@example.com'); // 添加多个接受者 $mail->addReplyTo('info@example.com', 'Information'); // 添加回复者 $mail->addCC('liruxing1715@sina.com'); // 添加抄送人 $mail->addCC('512848303@qq.com'); // 添加多个抄送人 $mail->ConfirmReadingTo = 'liruxing@wanzhao.com'; // 添加发送回执邮件地址,即当收件人打开邮件后,会询问是否发生回执 $mail->addBCC('734133239@qq.com'); // 添加密送者,Mail Header不会显示密送者信息 $mail->WordWrap = 50; // 设置自动换行50个字符 $mail->addAttachment('./1.jpg'); // 添加附件 $mail->addAttachment('/tmp/image.jpg', 'one pic'); // 添加多个附件 $mail->isHTML(true); // 设置邮件格式为HTML $mail->Subject = 'Here is the 主题'; $mail->Body = 'This is the HTML 信息 body <b>in bold!</b>. Time:'.date('Y-m-d H:i:s'); $mail->AltBody = 'This is the 主体 in plain text for non-HTML mail clients'; if(!$mail->send()) { echo 'Message could not be sent.'; echo 'Mailer Error: ' . $mail->ErrorInfo; exit; } echo 'Message has been sent';
注:转载请注明出处!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Is the Outlook mail icon missing from Windows 11's Control Panel? This unexpected situation has caused confusion and concern among some individuals who rely on OutlookMail for their communication needs. Why don't my Outlook emails show up in Control Panel? There may be several possible reasons why there are no Outlook mail icons in Control Panel: Outlook is not installed correctly. Installing Office applications from the Microsoft Store does not add the Mail applet to Control Panel. The location of the mlcfg32.cpl file in Control Panel is missing. The path to the mlcfg32.cpl file in the registry is incorrect. The operating system is not currently configured to run this application

PHP sends emails asynchronously: avoid long waits for emails to be sent. Introduction: In web development, sending emails is one of the common functions. However, since sending emails requires communication with the server, it often causes users to wait for a long time while waiting for the email to be sent. In order to solve this problem, we can use PHP to send emails asynchronously to optimize the user experience. This article will introduce how to implement PHP to send emails asynchronously through specific code examples and avoid long waits. 1. Understanding sending emails asynchronously

We've been talking lately about the many features Microsoft plans to add to its latest operating system, Windows 11. But don't think that Microsoft will add nothing and take nothing back. In fact, the software giant started removing quite a few old features. After announcing plans to decommission MSDT functionality ahead of the release of Windows 12, a Redmond developer has more bad news. We are actually talking about remote mail slot legacy tool. Trust us when we say you actually want to know this. Microsoft has started deprecating this feature in build 25314. We are sure you remember that just a few days ago, Microsoft released build 25314 in its new canary channel. The above version contains many new features

If you find that blank pages appear when printing a mail merge document using Word, this article will help you. Mail merge is a convenient feature that allows you to easily create personalized documents and send them to multiple recipients. In Microsoft Word, the mail merge feature is highly regarded because it helps users save time manually copying the same content for each recipient. In order to print the mail merge document, you can go to the Mailings tab. But some Word users have reported that when trying to print a mail merge document, the printer prints a blank page or doesn't print at all. This may be due to incorrect formatting or printer settings. Try checking the document and printer settings and make sure to preview the document before printing to ensure the content is correct. if

Recently, many users have reported the issue of Outlook emails getting stuck in the outbox. Even after several attempts to send the email, the issue was not resolved. When you see this issue and check your outbox folder, the message will be stuck there. Possible reasons for emails getting stuck in Outlook outbox: The attachments in the email exceed the size limit, which slows down the sending process. Outlook account authentication issues with mail server Incorrect send/receive settings in Outlook or mail server offline Outlook. Outlook data files are being used by some other software. Antivirus software scans outgoing emails. If this problem has been bothering you and you are unable to send an email

PHP email tracking function: understand user behavior and feedback on emails In modern society, email has become an indispensable part of people's daily life and work. For businesses, sending emails is one of the important ways to communicate with customers and promote products or services. However, after an email is sent, how do we know whether it was received, read, or how the user reacted to the content of the email? At this time, the email tracking function becomes particularly important. The email tracking function can help us understand user behavior and feedback on emails

As part of updating native apps for Windows 11, Microsoft plans to release a new Outlook. The app was built from the ground up and is now being prepared for preview, which will likely be announced during Microsoft's Windows 11 hybrid event. The project is called "ProjectMonarch" and this new Outlook has been in development for over a year. This is a reboot of the web app that aims to unify all existing Windows email clients such as Mail and Calendar as well as the desktop version of Outlook. With OutlookOne, Microsoft hopes to help users manage their email across different desktop platforms. There are many ways to access

What is real-time voicemail transcription? Live Voicemail Transcription is an innovative feature introduced in iOS 16 that allows iPhone users to view a live transcription of their voicemail while leaving it. This feature utilizes advanced speech recognition technology to convert spoken words into text, providing a convenient and accessible way to stay up to date on the latest news without having to listen to them entirely. Benefits of Using Live Voicemail Transcription Live Voicemail Transcription offers several advantages to iPhone users: Improved Productivity: By providing real-time transcription, Live Voicemail Transcription saves users time and effort by eliminating the need to listen to the entire voicemail. . This allows users to quickly scan the content of voicemails and prioritize their responses. Accessibility for hearing-impaired users
