Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / Visual Basic
Article

How to send a simple text email message

Rate me:
Please Sign up or sign in to vote.
3.97/5 (26 votes)
14 Nov 20042 min read 234.1K   1.3K   58   58
How to send a simple text email message.

Sample Image - IndySMTP.gif

Introduction

This article will provide a very basic overview of how to send a plain text mail message with the open source Indy sockets library for .NET.

Constructing the Message

The following code is the basic structure for constructing a message:

C#
C#
Indy.Sockets.Message LMsg = new Indy.Sockets.Message();
LMsg.From.Text = textFrom.Text.Trim();
LMsg.Recipients.Add().Text = textTo.Text.Trim();
LMsg.Subject = textSubject.Text.Trim();
LMsg.Body.Text = textMsg.Text;

Visual Basic

VB.NET
Dim LMsg As New Indy.Sockets.Message
LMsg.From.Text = textFrom.Text.Trim
LMsg.Recipients.Add.Text = textTo.Text.Trim
LMsg.Subject = textSubject.Text.Trim
LMsg.Body.Text = textMsg.Text

A call to the Clear method is necessary only if a single Message is being reused. Clear resets the message content and other fields to their default or empty states.

It is actually legal to send messages without From, Subject, and Body. However, such a message is not very useful and many servers will reject it either as faulty, or probable spam. Thus, these properties should be considered the minimum requirements for sending a message.

For more advanced messages, the Message class also has properties for CC, BCC, Attachments, HTML and more.

Sending the Message

Once a message has been constructed, it must be delivered to an SMTP server. This is done using the SMTP class. The following code is the basic form for sending a message:

C#

C#
SMTP LSMTP = new SMTP();
LSMTP.Host = textSMTPServer.Text.Trim();
LSMTP.Connect();
try {
  LSMTP.Send(LMsg);
  Status("Completed");
}
finally {
  LSMTP.Disconnect();
}

Visual Basic

VB.NET
Dim LSMTP As New SMTP
LSMTP.Host = textSMTPServer.Text.Trim
LSMTP.Connect()
Try
  LSMTP.Send(LMsg)
  'Status("Completed")
Finally
  LSMTP.Disconnect()
End Try

The host must be set so that the SMTP class knows where to send the messages to. In the case of SMTP, the host can be thought of as the address of the local post office.

The Send method accepts one argument which specifies the Message class to send.

In this example, only one message is sent. However, the SMTP protocol allows for multiple messages, so it is not necessary to connect and disconnect if multiple messages are to be sent. To send multiple messages, simply make additional calls to the Send method while connected. Multiple Message instances can be used, or an existing one can be modified between calls to Send.

Send Mail Demo

A very basic demo of sending a simple mail message is available as SendMail.

In addition to the basics covered in this article, the demo also makes use of the OnStatus event. The OnStatus event is a core event of Indy but implemented differently by each protocol. OnStatus is fired at various times during calls to Connect, Send, and Disconnect. Each time, a text message is passed that explains what is occurring. OnStatus is designed to provide user interface updates, or logging. It's not designed for pragmatic interpretation of state. In the SendMail demo, the messages from OnStatus are displayed into a ListBox.

In this demo, the OnStatus event has been defined as follows:

C#

C#
private void Status(string AMessage) {
  lboxStatus.Items.Add(AMessage);
  // Allow the listbox to repaint
  Application.DoEvents();
  Application.DoEvents();
  Application.DoEvents();
}

private void SMTPStatus(object aSender, Status aStatus, string aText) {
  Status(aText);
}

Visual Basic

VB.NET
Private Sub Status(ByVal aMessage As String)
  lboxStatus.Items.Add(aMessage)
  ' Allow the listbox to repaint
  Application.DoEvents()
  Application.DoEvents()
  Application.DoEvents()
End Sub

Private Sub SMTPStatus(ByVal aSender As Object, ByVal aStatus As Status, 
  ByVal aText As String)
  Status(aText)
End Sub

When the Send Mail button is pressed, the following code is executed to send the message:

C#

C#
private void butnSendMail_Click(object sender, System.EventArgs e)  {
  butnSendMail.Enabled = false; 
  try {
    Indy.Sockets.Message LMsg = new Indy.Sockets.Message();
    LMsg.From.Text = textFrom.Text.Trim();
    LMsg.Recipients.Add().Text = textTo.Text.Trim();
    LMsg.Subject = textSubject.Text.Trim();
    LMsg.Body.Text = textMsg.Text;

    // Attachment example
    // new AttachmentFile(LMsg.MessageParts, @"c:\temp\Hydroponics.txt");

    SMTP LSMTP = new SMTP();
    LSMTP.OnStatus += new Indy.Sockets.TIdStatusEvent(SMTPStatus);
    LSMTP.Host = textSMTPServer.Text.Trim();
    LSMTP.Connect();
    try {
      LSMTP.Send(LMsg);
      Status("Completed");
    }
    finally {
      LSMTP.Disconnect();
    }
  }
  finally {
    butnSendMail.Enabled = true;
  }
}

Visual Basic

VB.NET
Private Sub butnSendMail_Click(ByVal sender As System.Object, 
  ByVal e As System.EventArgs) Handles butnSendMail.Click
  butnSendMail.Enabled = False
  Try
    Dim LMsg As New Indy.Sockets.Message
    LMsg.From.Text = textFrom.Text.Trim
    LMsg.Recipients.Add.Text = textTo.Text.Trim
    LMsg.Subject = textSubject.Text.Trim
    LMsg.Body.Text = textMsg.Text

    ' Attachment example
    ' Dim xAttachment As New AttachmentFile(
    '    LMsg.MessageParts, "c:\temp\Hydroponics.txt")

    Dim LSMTP As New SMTP
    AddHandler LSMTP.OnStatus, AddressOf SMTPStatus
    LSMTP.Host = textSMTPServer.Text.Trim
    LSMTP.Connect()
    Try
      LSMTP.Send(LMsg)
      'Status("Completed")
    Finally
      LSMTP.Disconnect()
    End Try
  Finally
    butnSendMail.Enabled = True
  End Try
End Sub

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Cyprus Cyprus
Chad Z. Hower, a.k.a. Kudzu
"Programming is an art form that fights back"

I am a former Microsoft Regional DPE (MEA) covering 85 countries, former Microsoft Regional Director, and 10 Year Microsoft MVP.

I have lived in Bulgaria, Canada, Cyprus, Switzerland, France, Jordan, Russia, Turkey, The Caribbean, and USA.

Creator of Indy, IntraWeb, COSMOS, X#, CrossTalk, and more.

Comments and Discussions

 
QuestionI got this Exception at this line : - Indy.Sockets.Message LMsg = new Indy.Sockets.Message(); Pin
Member 1033383527-Mar-14 8:40
Member 1033383527-Mar-14 8:40 
General[Message Deleted] Pin
it.ragester2-Apr-09 21:50
it.ragester2-Apr-09 21:50 
QuestionPlease Help me Pin
polash_p3-May-08 18:38
polash_p3-May-08 18:38 
AnswerRe: Please Help me Pin
Chad Z. Hower aka Kudzu4-May-08 6:00
Chad Z. Hower aka Kudzu4-May-08 6:00 
GeneralReply Pin
Anjay11-Apr-08 18:18
Anjay11-Apr-08 18:18 
QuestionNice example - how about SMTPRelay? Pin
g18c12-Dec-07 21:17
g18c12-Dec-07 21:17 
Generalhi Pin
jer marshall12-Dec-07 8:02
jer marshall12-Dec-07 8:02 
Questionan i add Pin
Hesham Yassin7-Jun-07 2:30
Hesham Yassin7-Jun-07 2:30 
GeneralPlz help me(mail msg) Pin
Ahmed El-Badry31-Jan-07 3:38
Ahmed El-Badry31-Jan-07 3:38 
GeneralError using a web service...... Pin
cransaxbeth27-Dec-06 2:44
cransaxbeth27-Dec-06 2:44 
GeneralAddress Rejected Error Message [modified] Pin
cransaxbeth6-Dec-06 6:24
cransaxbeth6-Dec-06 6:24 
GeneralRe: Address Rejected Error Message Pin
Chad Z. Hower aka Kudzu6-Dec-06 6:31
Chad Z. Hower aka Kudzu6-Dec-06 6:31 
GeneralRe: Address Rejected Error Message Pin
cransaxbeth12-Dec-06 2:17
cransaxbeth12-Dec-06 2:17 
QuestionCan't loop through messageParts Pin
Andrej Kocevar11-Oct-06 3:35
Andrej Kocevar11-Oct-06 3:35 
GeneralCannot build the solution Pin
sanu204-Oct-06 0:51
sanu204-Oct-06 0:51 
QuestionRe: Cannot build the solution Pin
Matthijs ter Woord5-Oct-06 21:04
Matthijs ter Woord5-Oct-06 21:04 
QuestionSMTP server? Pin
Bryan Llanes17-Mar-06 18:55
Bryan Llanes17-Mar-06 18:55 
AnswerRe: SMTP server? Pin
Chad Z. Hower aka Kudzu18-Mar-06 23:37
Chad Z. Hower aka Kudzu18-Mar-06 23:37 
QuestionHow can I embedded an image in the Mail using VB.net? Pin
george bush 3315-Mar-06 14:39
george bush 3315-Mar-06 14:39 
AnswerRe: How can I embedded an image in the Mail using VB.net? Pin
Chad Z. Hower aka Kudzu17-Mar-06 1:29
Chad Z. Hower aka Kudzu17-Mar-06 1:29 
QuestionHow to send accented characters in the subject line? Pin
Lairton Ballin3-Mar-06 2:44
professionalLairton Ballin3-Mar-06 2:44 
AnswerRe: How to send accented characters in the subject line? Pin
Chad Z. Hower aka Kudzu4-Mar-06 7:27
Chad Z. Hower aka Kudzu4-Mar-06 7:27 
QuestionCan't send mail!? Pin
fanaticus5-Oct-05 6:33
fanaticus5-Oct-05 6:33 
GeneralSubject in email header Pin
purse0017-Jul-05 20:51
purse0017-Jul-05 20:51 
GeneralRe: Subject in email header Pin
Chad Z. Hower aka Kudzu8-Jul-05 3:38
Chad Z. Hower aka Kudzu8-Jul-05 3:38 

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.