About us Privacy Disclaimer Contact us
FAQ Help Advertising Feedback
Home Sitemap Search Donate us

  Home > Computer & I'net > Email - Headers...

   Browse by title articles:
   What is hot:

Email - Headers

Email - Making Forms

Reading a Delimited File using PHP
Module mod_rewrite Tutorial (Part 4)
Bad Web Design: Advertising Mistakes
Setting up mail accounts in Outlook
Prev articles1234567891011 12 



Email - Headers


Computer & I'net articlesEmail - Headers

by David Stanley    



Headers are the parts seen at the top of emails. Typically :

To : A comma seperated list of recipient emails.
From : The senders email address.
Reply-To : The email address where replies should be sent to.
Return-Path : Kinda the same thing as the Reply-To. Some email clients require this, others create a default.
Subject : Subject of the email.
CC : Carbon Copy. A comma seperated list of more recipients that will be seen by all other recipients.
BCC : Blind Carbon Copy. A comma seperated list of more recipients that will not be seen by any other recipients.

The TO and SUBJECT filds have already been discussed as the first and second variables in the MAIL command. The extra headers seen above can be entered as a 4th variable in the MAIL command.

<?php
mail("yourplace@somewhere.com","My email test.","Hello, how are you?","From: myplace@here.com Reply-To: myplace2@here.com Return-Path: myplace@here.com CC: sombodyelse@noplace.com BBC: hidden@special.com ");
?>

Looks kinda messy when it's all in there without using variables. That above example has all of the extra headers being declared. You may specify all or some or none as you desire. There are 2 very important things to note here :

1. These headers need their NAMES: shown unlike the first three variables in the mail command. The header names are CaSe SeNsItIvE. Use per example.
2. Each header is ended with the Return and Newline characters. There are no spaces between each header.

For better organization, these extra headers can be declared in a variable string like our previous examples.

<?php
$to = "yourplace@somewhere.com";
$subject = "My email test.";
$message = "Hello, how are you?";

$headers = "From: myplace@here.com ";
$headers .= "Reply-To: myplace2@here.com ";
$headers .= "Return-Path: myplace@here.com ";
$headers .= "CC: sombodyelse@noplace.com ";
$headers .= "BCC: hidden@special.com ";

if ( mail($to,$subject,$message,$headers) ) {
   echo "The email has been sent!";
   } else {
   echo "The email has failed!";
   }
?>

The $headers variable could have been typed out into one long string, but that is a bit much when it comes to editing and viewability. Instead our example shows each one seperated and the .= combines them together.




-----------------
Article by David Stanley. Visit his site http://www.htmlite.com. Reprinted with permission.





Budget




  Disclaimer | Privacy | Terms of useCopyright © 2004 Nice2know.com