Click here to Skip to main content
15,886,137 members
Articles / Desktop Programming / ATL
Article

Send mail without specifying an SMTP server

Rate me:
Please Sign up or sign in to vote.
4.76/5 (44 votes)
12 Apr 2005Ms-PL2 min read 1.3M   5.4K   114   142
A class derived from CSMTPConnection that queries the MX record for a target domain and uses that to send mail

Overview

Quite frequently, you hear people asking how they can send an email from their applications to a specific email address without prompting the user for a relaying SMTP server. The most commonly suggested solution is to use MAPI and get a list of SMTP servers from the user's registry, but this assumes that the user has configured a MAPI compliant email client on his machine. I always reply with my solution of querying the MX record for the target domain and then SMTP-chatting to that server directly - it's easy to do, it works on any machine and it's also the fastest way to send email (minimum number of SMTP hops).

Starting with VC++ 7, ATL includes the CSMTPConnection class which lets you send mail, provided you give it an SMTP server to connect to. I derived a class (CSMTPConnection2) from CSMTPConnection which lets you pass in the target domain name directly and the class queries the MX records using the default DNS on the client machine, gets a list of SMTP servers (depending on the number of MX records returned) and connects to the first SMTP server that works okay. The only visible change is to the Connect method, and even for the Connect method, the method signature remains the same. The first parameter (an LPCTSTR) now represents the target domain name instead of the SMTP hostname. So it should be pretty easy to modify your existing code. Just change all references to CSMTPConnection in your code to CSMTPConnection2 and you are done.

Using the class

  • #include the header file for the class

    #include "smtpconnection2.h"

    The header file includes a #pragma linker directive to include Dnsapi.lib

  • Use the CSMTPConnection2 class just as you would use the CSMTPConnection class (it's assumed that CoInitialize has been called prior to invoking and using this class)

    CMimeMessage msg;
    msg.SetSender("nish@somedomain.com");
    msg.SetSenderName("Nishter");
    msg.AddRecipient("someone@vsnl.com");
    
    //Optional
    msg.SetSubject("Hello World");
    msg.AddText("Hmmm, this should work fine!");
    //msg.AttachFile("some file path");
    
    CSMTPConnection2 conn;
    //You need to specify the domain name of the recipient email address
    if(conn.Connect("vsnl.com"))
    {
        if( conn.SendMessage(msg) == TRUE )
            std::cout << "Mail sent successfully" << std::endl;
        conn.Disconnect();    
    }

Class requirements

  • You'll need VC++ 7 or above (for the ATL classes)

  • This code will run only on Windows 2000 or later (because of the DNS API that's used to query the MX record)

  • You do not need MFC (the CString that's used is shared between MFC/ATL and I specifically used CSimpleArray instead of an MFC array class)

Limitation

Note that, because the class looks up the MX record and SMTPs directly into the mail server for each domain name, you cannot use this class to send mails to multiple-domains in one go.

Source listings

Header file

/*
    Copyright(C) Nishant Sivakumar (nish#voidnish.com)
    Please maintain this copyright notice if you distribute this file
    in original or modified form.
*/

#pragma once
#include <atlsmtpconnection.h>
#include <Windns.h>

#pragma comment(lib,"Dnsapi.lib")

class CSMTPConnection2 : public CSMTPConnection
{
public:    
    BOOL Connect(LPCTSTR lpszHostDomain, DWORD dwTimeout = 10000) throw();
private:
    void _GetSMTPList(LPCTSTR lpszHostDomain, CSimpleArray<CString>& arrSMTP);
}; 

Cpp file

/*
    Copyright(C) Nishant Sivakumar (nish#voidnish.com)
    Please maintain this copyright notice if you distribute this file
    in original or modified form.
*/

#include "StdAfx.h"
#include "smtpconnection2.h"

BOOL CSMTPConnection2::Connect(LPCTSTR lpszHostDomain, 
                               DWORD dwTimeout /*= 10000*/) throw()
{
    CSimpleArray<CString> arrSMTP;
    _GetSMTPList(lpszHostDomain, arrSMTP);
    for(int i=0; i<arrSMTP.GetSize(); i++)
    {
        if(CSMTPConnection::Connect(arrSMTP[i], dwTimeout) == TRUE)
            return TRUE;
    }
    return FALSE;
}

void CSMTPConnection2::_GetSMTPList(LPCTSTR lpszHostDomain, 
                                   CSimpleArray<CString>& arrSMTP)
{
    PDNS_RECORD pRec = NULL;
    if(DnsQuery(lpszHostDomain, DNS_TYPE_MX, DNS_QUERY_STANDARD,
        NULL, &pRec, NULL) == ERROR_SUCCESS)
    {
        PDNS_RECORD pRecOrig = pRec;
        while(pRec)
        {
            if(pRec->wType == DNS_TYPE_MX)
                arrSMTP.Add(pRec->Data.MX.pNameExchange);
            pRec = pRec->pNext;
        }
        DnsRecordListFree(pRecOrig,DnsFreeRecordList);
    }
} 

Conclusion

As usual, feedback is welcome and appreciated whether it's constructive or not.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
QuestionDoes anyone have this in vb.net 2005 Pin
wultepjo6-Mar-07 20:52
wultepjo6-Mar-07 20:52 
AnswerRe: Does anyone have this in vb.net 2005 Pin
daluu17-Jul-08 13:35
daluu17-Jul-08 13:35 
GeneralNot Working Pin
murtaza dhari5-Feb-07 5:13
murtaza dhari5-Feb-07 5:13 
GeneralRe: Not Working Pin
pascal roca3-Apr-07 4:24
pascal roca3-Apr-07 4:24 
GeneralMail using VC++ Pin
Syamlal S Nair31-Dec-06 23:53
Syamlal S Nair31-Dec-06 23:53 
GeneralRe: Mail using VC++ Pin
kk.tvm9-Apr-07 0:52
kk.tvm9-Apr-07 0:52 
GeneralRe: Mail using VC++ Pin
Syamlal S Nair9-Apr-07 0:56
Syamlal S Nair9-Apr-07 0:56 
GeneralRe: Mail using VC++ Pin
xiayuxue12-May-08 23:01
xiayuxue12-May-08 23:01 
hi Syamlal,i have a same trouble with you,call you share the mail code in VC++ with me? thank you very much,and my email address:shangliushekuai@sina.com.

dfd

GeneralAsserting on m_Overlapped.hEvent==0 Pin
harryshcoffee17-Dec-06 3:41
harryshcoffee17-Dec-06 3:41 
GeneralGreat correction on CSMTPConnection Pin
Herbert Yu29-Nov-07 9:50
Herbert Yu29-Nov-07 9:50 
Generalregarding domain name of the recipient email address Pin
chandrashekar T.J13-Dec-06 19:05
chandrashekar T.J13-Dec-06 19:05 
GeneralPlease see [Asserting on m_Overlapped.hEvent==0] above Pin
Herbert Yu29-Nov-07 9:52
Herbert Yu29-Nov-07 9:52 
Questionregarding server name. Pin
tj_terror12-Dec-06 22:27
tj_terror12-Dec-06 22:27 
GeneralGiving Exception For Subject Pin
Mahesh Kulkarni22-Nov-06 0:57
Mahesh Kulkarni22-Nov-06 0:57 
QuestionRequest to compile the file Pin
sudarshans17-Oct-06 23:59
sudarshans17-Oct-06 23:59 
AnswerRe: Request to compile the file Pin
daluu5-Nov-06 8:26
daluu5-Nov-06 8:26 
QuestionPython script alternative & cross-platform? Pin
daluu15-Sep-06 9:39
daluu15-Sep-06 9:39 
GeneralWhy yahoo filter... Pin
oasis_i26-Aug-06 23:33
oasis_i26-Aug-06 23:33 
General... :( i am going nuts... Pin
k999922-Aug-06 1:12
k999922-Aug-06 1:12 
GeneralRe: ... :( i am going nuts... Pin
k999922-Aug-06 14:33
k999922-Aug-06 14:33 
Generalthanks very much & one question,:) Pin
djjj0619-Aug-06 23:37
djjj0619-Aug-06 23:37 
GeneralUsage Pin
nat2kus16-Aug-06 17:44
nat2kus16-Aug-06 17:44 
GeneralRe: Usage Pin
Nish Nishant17-Aug-06 1:25
sitebuilderNish Nishant17-Aug-06 1:25 
QuestionSend email using a specific interface? Pin
zodiac003-Aug-06 15:00
zodiac003-Aug-06 15:00 
GeneralAsserting on m_Overlapped.hEvent==0 Pin
Syed Mazher15-Mar-06 6:42
Syed Mazher15-Mar-06 6:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.