项目 >> 网络组件 >> PHPMailer

PHPMailer(php)

PHPMailer

  • Can send emails with multiple TOs, CCs, BCCs and REPLY-TOs
  • Redundant SMTP servers
  • Multipart/alternative emails for mail clients that do not read HTML email
  • Support for 8bit, base64, binary, and quoted-printable encoding
  • Uses the same methods as the very popular AspEmail active server (COM) component
  • SMTP authentication
  • Word wrap

   

  • Address reset functions
  • HTML email
  • Tested on multiple SMTP servers: Sendmail, qmail, Postfix, Imail, Exchange, etc
  • Works on any platform
  • Flexible debugging
  • Custom mail headers
  • Multiple fs, string, and binary attachments (those from database, string, etc)
  • Embedded image support

Homepage: http://phpmailer.sourceforge.net/

Loading...

PHPMailer类发送中文邮件兼谈解决XOOPS中文发送邮件乱码

xoops.org.cn论坛上又有人问xoops发送中文邮件乱码的问题。domecc给出了一个临时办法,还提供一个网址http://www.thedevlog.com/dev/log-29.html来对utf8编码系统做修正。 其实PHPMailer已经是非常成熟的PHP类了(当然需要打上前一段时间出现的bug的补丁),对于邮件头和邮件体的编码处理已经非常好了,http://www.thedevlog.com/dev/log-29.html中提到修改En...

为什么用phpmailer发送邮件时乱码

在使用phpmailer发送html格式电子邮件时,我们需要指定文件编码 这里贴一个函数 function phpmailer_send_site_mail( $to , $from , $subject , $content ) {  if( !isset( $GLOBALS[’__phpmailer’] ) )  {   include( ROOT . ‘lib/phpmailer.class.php’ );   $GLOBALS[’__phpmailer&rsqu...

PHPMailer Tutorial

his tutorial describes how to use PHPMailer and explains the use of the class functions. by Tom Klingenberg Contents PHPMailer What is it? What does it do? Who needs it? Brief examples of PHPMailer's features. First time Sending your first email with PHPMailer. Tells you how to start. Anyone who completely...

Example

Installation Copy class.phpmailer.php into your php.ini include_path. If you are using the SMTP mailer then place class.smtp.php in your path as well. If you do not have control of the include directory and you are running PHP 4.0 or higher you can use this function to set it to the correct directory: ini_set("include_path&q...

终于能够通过phpmailer使用gmail账号发送邮件了

phpmailer(现在的版本是1.73)是一个很好用的工具,可以很方便的使用php语言发送邮件,支持smtp及验证,我们一直都用它。 但是,由于gmail的smtp采用了ssl连接: Outgoing Mail (SMTP) Server - requires TLS: smtp.gmail.com (use authentication) Use Authentication: Yes Use STARTTLS: Yes (some clients call this SSL) Port: 465 or 587 使用php...

PHPMailer安装及简单实例

PHPMailer是一个用PHP写的用于邮件发送的类,有点像Jmail,相信很多新手和我一样,开始很茫然,不知道怎么安装,查找了一下,发现这方面的资料真的少之又少,一个文章被转载千百次,一搜索全是同一个内容,真不知道说什么好,其实打开安装里的readme就一目了然了,闲话少说,安装其实很简单。 打开你电脑里的PHP.INI文件,找到如下位置,添加红线部分的内容...