audibleCode

a code repository for codes that you don’t have enough words to describe

Send emails in PHP-Using PEAR extensions

with 3 comments

The PHP Extension and Application Repository (PEAR) is an open source structured library of packages for PHP developers. These packages provide routines which solve problems PHP developers regularly face: sending structured e-mail (such as an HTML attachment), interacting with different databases from a single script, error handling, recovery and logging.
The base installation of PEAR is shipped with PHP itself. The programmers working on PEAR have developed a method of installing new packages and keeping your existing installation up-to-date, called the PEAR package manager.

PEAR package manager
If you are using a version of PHP prior to 4.3, you will need to install the PEAR package manager. UNIX users can run the following command:
lynx -source http://go-pear.org/ | /path/to/php

This downloads the source of the page at http://go-pear.org and runs it with the PHP binary (replace /path/to with the path to PHP on your system).

Windows users should go to the specified URL and save the page as ‘pear.php’ then run the following in DOS:
\path\to\php pear.php

The installation process creates a program called pear (this program is shipped with PHP 4.3), which is the PEAR package manager. Once installation is complete, you are ready to interact with the PEAR package manager.

Using the package manager
The PEAR package manager requires Internet access to download and install new packages. Make sure you are connected to the Net before proceeding. Before downloading new packages, it is useful to see which PEAR packages are installed. To do so, run:

pear list
This prints a formatted list of the package names, their version, and their status (whether the release is stable, in beta or otherwise). For basic installations, this list is quite short. To see all available PEAR packages, run:
pear remote-list
To install a package on the remote list, type:
pear install
For example, a package which is not installed by default is Mail_Mime. To install Mail_Mime type:
pear install Mail_Mime
You can find out more about Mail_Mime with the following command:
pear remote-info Mail_Mime
Using PEAR
PEAR uses classes and objects to provide a unified interface to the extensions provided. The following code shows how easy it is to use.
01 <?
02 require_once(“Mail.php”);
03 require_once(“Mail/mime.php”);
04
05 $html = “

Hello World, in HTML

“;
06 $mime = new Mail_mime();
07
08 $mime->setTXTBody(strip_tags($html));
09 $mime->addAttachment($html,”text/html”,”test.html”,false);
10
11 $body = $mime->get();
12 $headers = $mime->headers(array(“From” => “test@myhost.com.au”, “Subject” => “Test”));
13
14 $mail =& Mail::factory(“mail”);
15 if(!$mail->send(“you@yourhost.com.au”,$headers,$body)) {
16 echo “Could not send email”;
17 }
18 ?>
This short script generates a MIME-formatted e-mail with plain text and HTML parts. Lines two and three include the files Mail.php and mime.php, where the PEAR classes to be used are stored. We use require_once() instead of include(), since PEAR packages might also call include(), causing an error.
On line six, we create an object, $mime, from the Mail_mime class. Mail_mime methods allow developers to create multi-part MIME e-mails. On line eight, we add a text-based MIME section using the setTXTBody() method. On line 9, we attach the HTML version using the addAttachment() method. The first argument to this method is the string to attach, $html. The next argument specifies the MIME content type – in this case, text/html. The third argument specifies a file name for the attachment to be called and the fourth tells addAttachment() whether the string passed as the first argument is a file name or not. We tell it that it is not a file name (and that, therefore, it is the data which should be attached). On line 11, we generate the multi-part MIME body of the e-mail. On line 12, we generate the e-mail headers (the from address, and the e-mail subject); change these to suit your own situation.
Line 14 generates our mailer object, which is used on the following line to dispatch the e-mail, using the send() method.

Written by audiblecode

May 24, 2008 at 3:43 pm

3 Responses

Subscribe to comments with RSS.

  1. hi,thanks for the code but when i run the code i am getting the following error

    syntax error, unexpected T_STRING on line 8
    can you please help me whats going wrong…

    thanks

    kishore

    kishore

    October 16, 2008 at 8:06 am

  2. Good information, but I think, nothing much, PHP really stinks if I think of it working to go good SEO and it can take care of all the issues at meta data and still multi tier pages can be catered under data base.
    Over all, this article did not serve the purpsoe. The writer must rewrite in view of its application.
    Regards and good luck.

    Mubbashir

    November 6, 2008 at 8:40 am

  3. Good post, however this doesn’t actually work.
    What this does is adds an HTML file as an attachment.

    What you really want to do is replace line 9
    $mime->addAttachment($html,”text/html”,”test.html”,false);

    with
    $mime->setHTMLBody($html, false);

    Then this code operates correctly.

    Thanks for pointing out the Mail_Mime extension anyway!

    Zorfling

    February 24, 2009 at 1:26 pm


Leave a Reply