PHPMailer v2.0.0 新知

2007年11月,PHPMailer得下一个版本发布,作为开源软件,PHPer们已经非常熟悉该程序。最近版本v2.0.0继承了稳定版本1.7.3的标准协议,并且修改了部分的隐患,添加了对于php5的更好支持。对于class.smtp.php这个类,又添减了对于pop-before-smtp的对应,已经VERP的对应。

原文介绍如下:
PHPMailer
Full Featured Email Transfer Class for PHP
==========================================

** NOTE:

As of November 2007, PHPMailer has a new project team headed by industry
veteran Andy Prevost (codeworxtech). The first release in more than two
years will focus on fixes, adding ease-of-use enhancements, provide
basic compatibility with PHP4 and PHP5 using PHP5 backwards compatibility
features. A new release is planned before year-end 2007 that will provide
full compatiblity with PHP4 and PHP5, as well as more bug fixes.

We are looking for project developers to assist in restoring PHPMailer to
its leadership position. Our goals are to simplify use of PHPMailer, provide
good documentation and examples, and retain backward compatibility to level
1.7.3 standards.

If you are interested in helping out, visit http://sourceforge.net/phpmailer
and indicate your interest.

**

http://phpmailer.sourceforge.net/

This software is licenced under the LGPL.  Please read LICENSE for information on the
software availability and distribution.

Class Features:
- 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
- Native language support
- Word wrap, and more!

Why you might need it:

Many PHP developers utilize email in their code.  The only PHP function
that supports this is the mail() function.  However, it does not expose
any of the popular features that many email clients use nowadays like
HTML-based emails and attachments. There are two proprietary
development tools out there that have all the functionality built into
easy to use classes: AspEmail(tm) and AspMail.  Both of these
programs are COM components only available on Windows.  They are also a
little pricey for smaller projects.

Since I do Linux development I have missed these tools for my PHP coding.
So I built a version myself that implements the same methods (object
calls) that the Windows-based components do. It is open source and the
LGPL license allows you to place the class in your proprietary PHP
projects.


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.
In the language directory you will find several files like
phpmailer.lang-en.php.  If you look right before the .php extension
that there are two letters.  These represent the language type of the
translation file.  For instance "en" is the English file and "br" is
the Portuguese file.  Chose the file that best fits with your language
and place it in the PHP include path.  If your language is English
then you have nothing more to do.  If it is a different language then
you must point PHPMailer to the correct translation.  To do this, call
the PHPMailer SetLanguage method like so:

// To load the Portuguese version
$mail->SetLanguage("br", "/optional/path/to/language/directory/");

That's it.  You should now be ready to use PHPMailer!

 

最后附带一个简单程序:

 

<? php
require ( " class.phpmailer.php " );

$mail   =   new  PHPMailer();

$mail -> IsSMTP();                                       //  set mailer to use SMTP
$mail -> Host  =   " smtp1.example.com;smtp2.example.com " ;   //  specify main and backup server
$mail -> SMTPAuth  =   true ;      //  turn on SMTP authentication
$mail -> Username  =   " jswan " ;   //  SMTP username
$mail -> Password  =   " secret " //  SMTP password

$mail -> From  =   " from@example.com " ;
$mail -> FromName  =   " Mailer " ;
$mail -> AddAddress( " josh@example.net " ,   " Josh Adams " );
$mail -> AddAddress( " ellen@example.com " );                   //  name is optional
$mail -> AddReplyTo( " info@example.com " ,   " Information " );

$mail -> WordWrap   =   50 ;                                  //  set word wrap to 50 characters
$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. <p> " ;
   
echo   " Mailer Error:  "   .   $mail -> ErrorInfo;
   
exit ;
}

echo   " Message has been sent " ;
?>

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 4
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值