[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Encapsulating Atom Entries In An SMTP Message
On Wed, Dec 17, 2008 at 07:57:30AM -0500,
Lindsley Brett-ABL001 <Brett.Lindsley@xxxxxxxxxxxx> wrote
a message of 9 lines which said:
> Does anyone know of any work on encapsulating an Atom entry in an
> SMTP message?
[There are no SMTP messages, I assume you mean RFC5322 messages, which
can be sent with SMTP or with other protocols.]
MIME-Version: 1.0
Content-Type: application/atom+xml
Content-Disposition: attachment; filename="myentry.atom"
Content-Transfer-Encoding: what-you-want
With the content, encoded according to Content-Transfer-Encoding,
being:
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom" >
<title>Atom-Powered Robots Run Amok</title>
...
What else?