Recent Posts

Blog Archive



Friday, October 17, 2008

Setting the From Address on Email That is Sent From Your Website to Catch Replies and Bounces

By Jim A Hawkins

A lot of our customers run into trouble with email sent from their websites - Form Mail, or custom code. The problem is that the envelope-from address is often not set. If our customers or the recipients of these incorrectly formatted emails hit reply, sometimes the replies disappear into the ether (well actually they come to us but we can't possibly deal with them all so it's the same thing).

More importantly though, if the emails bounce - ie the address it was sent to isn't working - the bounce will go to the web hosting provider - yes we get a lot of these, which leads us to the original internal title of this article "How to Send Email from Websites Without Pissing Off Anchor"

Firstly, a bit of theory.

Messages contain two sections: the headers and the body. The headers most people are familiar with, and contains a To address, and a From address, in addition to many other headers. This is analogous to a formal letter in which the sender and recipient are printed on the same page as the message.

In addition to this, the Mail Transfer Agent (MTA) also keeps envelope information, analogous to the envelope that the letter is posted in. This is what the MTA uses when conducting an SMTP transaction, i.e. the MAIL FROM command, and RCPT TO commands use data from the envelope to instruct the destination MTA who the message is from and where to send it.

The envelope from address can be different to the message from.

Here's a typical message header:

<br /><br />Return-Path: anchor@starboard.anchor<br /><br />Received: from mail.anchor [202.4.236.106]</p><p>by localhost with IMAP (fetchmail-6.2.5)</p><p>for jaq @ localhost (single-drop); Wed, 08 Mar 2006 07:01:35 +1100 (EST)<br /><br />Received: (from anchor @ localhost)</p><p>by starboard.anchor (8.11.6/8.11.6) id k27K0iK27993</p><p>for tech-staff; Wed, 8 Mar 2006 07:00:44 +1100<br /><br />Received: from av1.puremail (av1.puremail [202.4.234.193])</p><p>by starboard.anchor (8.11.6/8.11.6) with ESMTP id k27K0g427949</p><p>for <root>; Wed, 8 Mar 2006 07:00:42 +1100<br /><br />Received: from bosun.anchor (unknown [202.4.234.196])</p><p>by av1.puremail (Spam Firewall) with ESMTP id C625320002D3</p><p>for <root>; Wed, 8 Mar 2006 07:00:41 +1100 (EST)<br /><br />Received: by bosun.anchor (Postfix, from userid 0)</p><p>id 5E37060D82; Wed, 8 Mar 2006 07:00:41 +1100 (EST)<br /><br />To: root@anchor<br /><br />Subject: Anchor Update Check bosun.anchor<br /><br />From: root <root@bosun.anchor><br /><br />

The envelope sender is marked at the destination by the Return-Path field, and is also the address that will receive bounces to messages from the MTA, if the To address doesn't exist.

How to do it right

The main problem customers have is that they are not setting the envelope-from address, thinking that merely setting From will suffice. As noted above, this is not sufficient and bounces will return to the webserver, not the place they are expecting.

Included below are some examples of how to correctly format your mail

Directly with Sendmail

You specify the envelope from address with the -f flag to sendmail, e.g.:

<br />/usr/bin/sendmail -t -i -f "sender@example-org" <<eof><br />To: recipient@example-org<br />Subject: some text<br /><br />Blah blah blah I am very important<br />EOF<br />

Via PHP

PHP is of course strange and you need to explicitly set the envelope sender when sending, at least according to my reading of the php mail function documentation

<br />mail('nobody@example-com', 'the subject', 'the message', null, '-f webmaster@example-com');<br />

More information

More code samples are available from the authors website.


Jim is a Linux systems administrator at Anchor with a passion for free software and open source solutions. Anchor is a provider of Australian web hosting and dedicated servers.

0 comments:

 

GooContents | Jump to TOP