PHP
  Home arrow PHP arrow Page 2 - Email Management Details
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Mobile Linux 
App Generation ROI 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP

Email Management Details
By: Sams Publishing
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 6
    2006-11-16

    Table of Contents:
  • Email Management Details
  • Attaching a File to a Message
  • Attached Images for HTML Emails
  • A Word About Email Delivery
  • Exam Prep Questions

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Email Management Details - Attaching a File to a Message


    (Page 2 of 5 )

    To attach a file to an email message, you have to create a multipart MIME message.

    • Pass these headers as the fourth parameter to mail():

      MIME-Version: 1.0 Content-Type: multipart/mixed;
      boundary="php-12345"

      Note the boundary on the end of the Content-Type. The boundary is an arbitrary US-ASCII string that tells MUAs when the end of a MIME block has been reached. You can set it to be whatever you want, provided you set it to something that isn't going to appear in your email message.

    • The first part of your message string should be a plain text message like this:

      If you are reading this, it means that your email
      client does not support MIME. Please upgrade your email
      client to one that supports MIME. —php-12345

      Note the boundary marker after the message. This tells MIME that you've reached the end of this particular part of the email message. You can now add more parts to your email message.

    • The second part of your "message" string should be the message itself. You need to add Content-Type and Content-Transfer-Encoding headers to the message, followed by the message itself.

      Content-Type: text/plain; charset="iso-8859-1"
      Content-Transfer-Encoding: 7bit
      Hello, this is my plain text message. If you can see
      this, then hopefully my MIME email is working fine.
      —php-12345

      Note the boundary marker after the message. You have to put the boundary marker at the end of each part of the message.

    • Next come the attachments. Each attachment gets added to the "message" string as well. You need to add Content-Type and Content-Transfer-Encoding headers, and then the attachment.

      If the attachment isn't plain text, you should encode it using base64 encoding:

      Content-Type: image/jpeg
      Content-Transfer-Encoding: base64
      <message goes here>
      —php-12345
    <?php
    // who is the email going to?
    // change this to be *your* email address ;-)
    $to = "stuart";
    // what is the message?
    $message = "This is my third email sent from "
    . "<a
    href="http://www.php.net">PHP</a>.\r\n" . "This email has an attached image\r\n"; // don't forget our blank line $blank_line = "\r\n"; // define our boundary $boundary_text = "php-12345"; $boundary = "—" . $boundary_text . "\r\n"; $last_boundary = "—" . $boundary_text . "—\r\n"; // add the MIME headers $more_headers = "MIME-Version: 1.0\r\n" . "Content-Type: multipart/mixed;
    boundary="" . $boundary_text . ""\r\n"; // create the first part of the message $mime_message = "If you are reading this, it means
    that your e-mail client\r\n" . "does not support MIME. Please
    upgrade your e-mail client\r\n" . "to one that does support MIME.\r\n" . $boundary; // add the second part of the message $mime_message .= "Content-Type: text/html;
    charset="iso-8859-1"\r\n" . "Content-Transfer-Encoding:
    7bit\r\n" . $blank_line . $message . $boundary; // now add the attachment $mime_message .= "Content-Type: image/gif;
    name="php.gif"\r\n" . "Content-Transfer-Encoding:
    base64\r\n" . "Content-disposition: attachment;
    file="php.gif"\r\n" . $blank_line . chunk_split(base64_encode
    (file_get_contents("php.gif"))) . "\r\n" . $last_boundary; // send the email $result = mail ( $to, "My first HTML e-mail with an attachment", $mime_message, $more_headers ); ?>

    You can add as many attachments as you want, but remember—they can make the email quite large to download, and many users are still using dial-up rather than broadband!

    The last boundary marker in the email message must end with . For example, if our boundary marker is

    —php-12345

    the last marker in the email message would be

    —php-12345—

    instead.

    More PHP Articles
    More By Sams Publishing


       · This article is an excerpt from the book "Zend PHP Certification Study Guide,"...
     

    Buy this book now. This article is excerpted from chapter 8 of the Zend PHP Certification Study Guide, written by Zend Technologies (Sams; ISBN: 0672327090). Check it out today at your favorite bookstore. Buy this book now.

       

    PHP ARTICLES

    - Working With Different Namespaces in PHP 5
    - User Management Explained: Overview
    - Using Namespaces in PHP 5
    - Database Security: Guarding Against SQL Inje...
    - Building a Modular Exception Class in PHP 5
    - Database and Password Security for Web Appli...
    - Handling MySQL Data Set Failures in PHP 5
    - Building Site Registration for Web Applicati...
    - Intercepting Customized Exceptions in PHP 5
    - Securing Your Web Application Against Attacks
    - Sub Classing Exceptions in PHP 5
    - Authentication for Web Application Security
    - Building a Content Management System with Co...
    - Filters and Login Systems for Web Applicatio...
    - Working with the Email Class in Code Igniter





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT