PHP
  Home arrow PHP arrow Page 3 - Email Management Details
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
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: starstarstarstarstar / 7
    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:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log 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 - Attached Images for HTML Emails
    ( Page 3 of 5 )

    HTML emails will attempt to download their images and stylesheets from your web server. Because of security and privacy reasons, many MUAs will refuse to attempt these downloads, ruining the look of your HTML email message.

    You can add your images as attachments to your email, and then point your HTML at the attached images:

    • Change the first Content-Type of your email to be multipart/related. Don't forget to include the boundary definition.

    • When you add an image as an attachment, include this additional header:

    • Content-Location: URL

    • URL is the URL that you use inside the <img> tag to include your image.

    <?php
    
    // who is the email going to?
    // change this to be *your* email address ;-)
    
    $to = "stuart";
    
    // what is the URL of the image?
    
    $image = http://static.php.net/http://www.php.net/
    images/php.gif; // what is the message? $message = "This is my fourth email sent from " . "<a
    href="http://www.php.net">PHP</a>.\r\n" . "This email has an image " . "<img src="" . $image . ""> here.\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/related;
    boundary="" . $boundary_text . ""; type="text/html"\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-Location: " . $image . "\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 embedded
    image", $mime_message, $more_headers ); ?>

    Using Extra Command-Line Parameters

    The fifth argument to mail() is a list of parameters to use when executing the sendmail wrapper.

    These parameters have no effect at all if you are using PHP on Windows without a sendmail wrapper.



     
     
    >>> More PHP Articles          >>> More By Sams Publishing
     

       

    PHP ARTICLES

    - Building Dynamic Queries with Chainable Meth...
    - PHP Encryption and Decryption Methods
    - Building a MySQL Abstraction Class with Meth...
    - Completing a Sample String Processor with Me...
    - Mastering WHILE Loops for PHP and MySQL
    - Method Chaining: Adding More Methods to the ...
    - Method Chaining in PHP 5
    - The Role of Interfaces in Applying the Depen...
    - Dependency Injection: Using a Setter Method ...
    - Using a Model Class with the Dependency Inje...
    - Injecting Objects Using Setter Methods with ...
    - Injecting Objects by Constructor with the De...
    - The Dependency Injection Design Pattern in P...
    - Performing Inferential Statistical Analysis ...
    - Performing Descriptive Statistical Analysis ...





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