E-Mail File Attachment Using MIME (with HTML support)
Introduction
When a codeguru "afficionado" wants to send automatic mail or needs a mailer for any reason, he may use the classes designed by Wes Clyburn under the title E-Mail file attachment using MIME. See there, where there is a good description of MIME mechanisms and a description of the classes used.
Anyway, there was the need for an update to these classes to add a few more features:
- Use of HTML text with images.
- Optimisation of speed due to the use of long strings.
- Support of CC and BCC.
- Progess notification for long transfers.
- Support of BASE64 coding directly from memory (and not only from a file).
With these updates, a nearly full compatibility had been kept. "Nearly" means that the compatibility is at the source level, but the numeric values of some enums has been changed.
Installation
- Unzip the temail project.
- Update MYSELF, MAILSERVER, and FROM defines in temail.cpp to your own addresses
- Compile, build and execute it
Overview
A mail message may contain one or many elementary "parts" : HTML text, GIF image, attached file...
All mail messages are not MIME, but...
A MIME mail message (CMIMEMessage) is considered as having a main MIME part(CMIMEPart), and only one. Some MIME parts are considered as "containers" of some other "elementary" MIME parts. This was not the case with the original classes of Wes, where elementary MIME parts where added to the message itself: the concept of "container" was implicit but not formalized.
The containers are of type MIXED, ALTERNATIVE, or RELATED (Mmm... you are allowed to ignore all these kind of containers and simply copy the example).The elementary MIME parts supported are of type TEXT_PLAIN, TEXT_HTML, APPLICATION_OCTETSTREAM (for attachment), APPLICATION_OCTETSTREAM_IMAGE (for embedded images)
Well, this should be enough to see an example.
Example
void TestHTMLMailWithGifWithAttach()
{
// Create and initialize a message
CMIMEMessage *pMsg= new CMIMEMessage;
pMsg->m_sFrom = FROM;
pMsg->AddMultipleRecipients(MYSELF);
pMsg->AddMultipleRecipients("john@brown.family",
CMailMessage::BCC);
pMsg->m_sSubject = "Test CMIMEmessage";
// Create MIME containers
CMIMEMessage::CMIMEPart *pMIMEmixed =
pMsg->AddMIMEPart(CMIMEMessage::MIXED);
CMIMEMessage::CMIMEPart *pMIMErelated =
pMIMEmixed->AddMIMEPart(CMIMEMessage::RELATED);
CMIMEMessage::CMIMEPart *pMIMEalternative =
pMIMErelated->AddMIMEPart(CMIMEMessage::ALTERNATIVE);
// Alternative 1 : mail client does not support HTML...
// tell it in plain text 7Bits (warning : no
// conversion is done)
CString Text(
"Text that appear when client does not support HTML\r\n\r\n");
pMIMEalternative->AddMIMEPart(CMIMEMessage::TEXT_PLAIN,Text);
// Alternative 2 : mail client does support HTML...
// tell it in HTML text quoted-printable (warning :
// no conversion is done)
CString Html;
Html=GetHTMLResource(IDR_HTML1);
pMIMEalternative->AddMIMEPart(CMIMEMessage::TEXT_HTML,Html);
// Prepare GIF image
char* Gif;
int Len;
GetGIFResource(IDR_TOLLOGO, &Gif, &Len);
// GIFS are related to HTML text : note
// the string "IDR_TOLLOGO" which appears somewhere
// in IDR_HTML1 text
pMIMErelated->AddMIMEPart(
CMIMEMessage::APPLICATION_OCTETSTREAM_IMAGE,
Gif,
CMIMEMessage::MEMORY,
"IDR_TOLLOGO",
Len);
GetGIFResource(IDR_HR, &Gif, &Len);
pMIMErelated->AddMIMEPart(
CMIMEMessage::APPLICATION_OCTETSTREAM_IMAGE,
Gif,
CMIMEMessage::MEMORY,
"IDR_HR",
Len);
// Add attachment
pMIMEmixed->AddMIMEPart(
CMIMEMessage::APPLICATION_OCTETSTREAM,
ATTACHMENT);
// Do not forget to...
pMsg->FormatMessage();
// Then ...
SendSMTP(pMsg);
}
This example should be enough to solve most of the complex cases. On the contrary, simpler cases are possible. See temail.cpp for simpler examples.
Tips
Calling AddMIMEPart()
The parameters of AddMIMEPart() are:
CMIMEPart* AddMIMEPart(eMIMETypeCode nContentType,
LPCTSTR szContent= NULL,
eMIMEEncodingCode nEncoding = DEFAULT,
LPCTSTR szParameters = NULL,
int Len=0);
- nContentType is one of the values seen in the overview.
- szContent may be the contents of the source of data or a file path to the source of data.
- nEncoding is one of the following basic values: DEFAULT,_7BIT, QUOTED_PRINTABLE, BASE64. DEFAULT is very fine, but you can try other values. Please note that only BASE64 does effective encoding.
Other bits may be or'ed with the basic value:- MEMORY or FILE indicate the source of data. In the case of FILE szContent contains the file name, else it contains the data itself.
- SOONCODED and ENCODE indicate if data is soon coded or must be coded by AddMIMEPart.
- In TEXT_PLAIN and TEXT_HTML, BASE64, FILE and ENCODE are not implemented.
- In APPLICATION_OCTETSTREAM and APPLICATION_OCTETSTREAM_IMAGE, the only implemented basic valueis BASE64. Moreover, SOON_ENCODED is not implemented.
- TEXT_PLAIN : _7BIT and SOONCODED and MEMORY.
- TEXT_HTML : QUOTED_PRINTABLE and SOONCODED and MEMORY.
- APPLICATION_OCTETSTREAM and APPLICATION_OCTETSTREAM_IMAGE : BASE64 and ENCODE and FILE.
- szParameters may be used to add some text after the Content-Type except in the case of APPLICATION_OCTETSTREAM or APPLICATION_OCTETSTREAM_IMAGE. In this last case, it contains an identifier string for the image (cf IDR_TOLLOGO in the example).
- Len indicates the length of szContent. In case of 0, a strlen is done.
Progress notification
Derive you own class from CMIMEmessage and override NotifyProgress(). For a basic example search CNotifiedMIMEMessage in temain.c.
To do
Credits
These classes come directly from the work of Wes Clyburn.Downloads
Download source - 62 KbDemo executable is not provided, because it effectively send emails...

Comments
CSocket problem
Posted by vgu on 11/29/2005 02:21amHi, I am trying to use these classes in an extension dll, but I am having problems when trying to create the CSocket class (m_wsSMTPServer.Create()). Approximately each second time it fails. Any idea what it can be ?
-
Reply
-
-
ReplyCSocket problem
Posted by pcouderc on 11/29/2005 05:18amCSocket problem
Posted by vgu on 11/29/2005 05:01amThank you for answering. When using your example everything works fine, but when putting the code into an extension dll it fails almost for every second email. It is the aforementioned method call that fails, something that creates an 'Internal server error 500' from the dll (in the web browser). I am not able to catch the error from the function. It may be some kind of cleanup/initialization thing.
ReplyCSocket us
Posted by pcouderc on 11/29/2005 02:53amI have got this SMTP.cpp from Wes Clyburn nearly without even opening the file...! This kind of problem has bever been reported, and I have few idea to suggest ; all I can say is that it is very robust code used since many years in production. Does the problem occur when you use the same code in a true good old exe? Maybe some cleaning at the end is not done correctly in CSMTP (or elswhere) in a way so that the problem appear only in a .dll, but is managed correclty in exe?
ReplyTested under Mozilla and Thunderbird
Posted by pcouderc on 12/09/2004 01:44amThese classes have tested to generate messages that are read correctly too under Mozilla and Thunderbird Pierre Couderc http://www.tol.fr
ReplyHow can i read email that it has images or html
Posted by Legacy on 01/15/2003 12:00amOriginally posted by: Victor
ReplyI also want to use the default client with attachments
Posted by Legacy on 01/07/2003 12:00amOriginally posted by: David
I cannot find any information on allowing a program to open a default email client with email addresses, names, body and attachments ready to go. Any help?
ReplyQuoted Printable Encode / Decode Routine
Posted by Legacy on 12/16/2002 12:00amOriginally posted by: Bob Bonham
ReplyProblem with these classes ( deadlock )
Posted by Legacy on 11/05/2002 12:00amOriginally posted by: Mihai Stanescu
ReplyBcc is not "blind" copy
Posted by Legacy on 10/09/2002 12:00amOriginally posted by: Andreas J�ger
Hi,
you should remove the following line, so that the Bcc does not appear in the header:
Replyif(!Bcc.IsEmpty()) add_header_line( (LPCTSTR) Bcc );
Otherwise Bcc and Cc would be the same.
RTF embedding
Posted by Legacy on 09/30/2002 12:00amOriginally posted by: Robert Dunn
I have looked at these classes and as is they are great, however, I wish to add an agent to handle rich text embedding and I do not understand how that can be accomplished.
This explanation of Wes' original code is good but I wonder if there can be other values for eMIMETypeCode other than those given. How do I get rich text format type? Do I make up my own type, add it to the enumeration, and write my own encoding and decoding agent or is the basic content type somehow functionaly limited to those listed here?
Does anyone have an rft agent example?
ReplyOutlook- multiple recipients format problem
Posted by Legacy on 07/26/2002 12:00amOriginally posted by: Andreas J�ger
Outlook does not display a semicolon (";") between multiple recipients
ReplyMINE attachment + MAPI?
Posted by Legacy on 07/17/2002 12:00amOriginally posted by: Tom Wang
Is it possible to send MIME type attachments with
ReplyMAPI? I want to mail a html file with images using
the user's default email client, instead of our own.
Loading, Please Wait ...