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

Send SMTP mail using VB.NET

Rate me:
Please Sign up or sign in to vote.
4.10/5 (19 votes)
1 Oct 2002 486.6K   12.7K   72   27
A console application to send SMTP mail

Image 1

Introduction

I needed a way to send a smtp mail message from a command prompt to notify me when one our servers failed over using Double-Take.

This article demonstates sending a smtp mail message from the command prompt

VB.NET
Imports System.Web.Mail
    
Sub Main()
        Dim strMSG As String
        Dim strArgs() As String = Command.Split(",")
        Dim blnSMTP As Boolean = False
        Dim blnCC As Boolean = False
        Dim blnAttachments As Boolean = False

        'get the product name, version and description from the assembly
        strMSG = vbCrLf + vbCrLf + _
          System.Diagnostics.FileVersionInfo.GetVersionInfo( _ 
      System.Reflection.Assembly.GetExecutingAssembly.Location).ProductName _
              + " v" + System.Diagnostics.FileVersionInfo.GetVersionInfo( _
      System.Reflection.Assembly.GetExecutingAssembly.Location _
            ).ProductVersion + vbCrLf + _
         System.Diagnostics.FileVersionInfo.GetVersionInfo( _
         System.Reflection.Assembly.GetExecutingAssembly.Location _
              ).Comments + vbCrLf + vbCrLf

        If UBound(strArgs) < 3 Then
            strMSG = strMSG + "Usage: EPSendMail from@email.com, " + _
                   "to@email.com, subject, message, [smtp Server],"  + _
                   "[cc1@email.com;cc2@email.com;...], [attachment1;" + _
                        "attachment2;...]" + vbCrLf
            Console.Write(strMSG)
            Exit Sub
        End If

        strMSG = strMSG + "Sending email message" + vbCrLf + _
            "  From        --> " + Trim(strArgs(0)) + vbCrLf + _
            "  To          --> " + Trim(strArgs(1)) + vbCrLf + _
            "  Subject     --> " + Trim(strArgs(2)) + vbCrLf + _
            "  Message     --> " + Trim(strArgs(3)) + vbCrLf
        If UBound(strArgs) >= 4 Then
            If Len(Trim(strArgs(4))) > 0 Then
                blnSMTP = True
                strMSG = strMSG + "  SMTP Server --> " + Trim(strArgs(4)) + _
                   vbCrLf
            End If
        End If
        If UBound(strArgs) >= 5 Then
            If Len(Trim(strArgs(5))) > 0 Then
                blnCC = True
                strMSG = strMSG + "  CC          --> " + Trim(strArgs(5)) + _
                   vbCrLf
            End If
        End If
        If UBound(strArgs) >= 6 Then
            If Len(Trim(strArgs(6))) > 0 Then
                blnAttachments = True
                strMSG = strMSG + "  Attachments --> " + Trim(strArgs(6)) + _
                   vbCrLf
            End If
        End If
        Console.Write(strMSG)

        'send the email
        Try
            Dim insMail As New MailMessage()
            With insMail
                .From = Trim(strArgs(0))
                .To = Trim(strArgs(1))
                .Subject = Trim(strArgs(2))
                .Body = Trim(strArgs(3))
                If blnCC Then .Cc = Trim(strArgs(5))
                If blnAttachments Then
                    Dim strFile As String
                    Dim strAttach() As String = Split(strArgs(6), ";")
                    For Each strFile In strAttach
                        .Attachments.Add(New MailAttachment(Trim(strFile)))
                    Next
                End If
            End With
            If blnSMTP Then SmtpMail.SmtpServer = Trim(strArgs(4))

            SmtpMail.Send(insMail)

            Console.WriteLine("Successfully sent email message" + vbCrLf)

        Catch err As Exception
            Console.WriteLine("EXCEPTION " + err.Message + vbCrLf)
        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
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionsmtp mail Pin
nirmalVaishnav29-Jun-17 20:54
professionalnirmalVaishnav29-Jun-17 20:54 
Questionsend me a completly code for smtp mail in vb.net Pin
azruddin saiyed1-Jul-15 22:10
azruddin saiyed1-Jul-15 22:10 
GeneralExceptions when running from renaming path on Vista? [modified] Pin
John Boster12-Sep-08 16:57
John Boster12-Sep-08 16:57 
GeneralImports System.Web.Mail not found [modified] Pin
Seveley14-Jun-08 6:21
Seveley14-Jun-08 6:21 
GeneralRe: Imports System.Web.Mail not found [modified] Pin
dcalvinisti8-Apr-12 13:04
dcalvinisti8-Apr-12 13:04 
Try changing your imports to Imports System.Net.Mail... it should work.
Generalproblem smtserver Pin
raquidd2218-Mar-08 15:55
raquidd2218-Mar-08 15:55 
GeneralRe: problem smtserver Pin
raquidd2218-Mar-08 16:30
raquidd2218-Mar-08 16:30 
GeneralGreat Articles Pin
Vimalsoft(Pty) Ltd21-Oct-07 20:07
professionalVimalsoft(Pty) Ltd21-Oct-07 20:07 
QuestionDo we really need an SMTP Server here ? Pin
Justme4u27-Sep-07 5:04
Justme4u27-Sep-07 5:04 
Generalsending mails Pin
divyathannippara18-Mar-07 18:38
divyathannippara18-Mar-07 18:38 
GeneralCDO.Message Error Pin
AndyHug19-Jun-06 22:03
AndyHug19-Jun-06 22:03 
QuestionSMTP Server Authentication : How To? Pin
MehdiAnis7-Mar-06 3:23
MehdiAnis7-Mar-06 3:23 
AnswerRe: SMTP Server Authentication : How To? Pin
Chris Dufour7-Mar-06 4:03
Chris Dufour7-Mar-06 4:03 
AnswerRe: SMTP Server Authentication : How To? Pin
MehdiAnis7-Mar-06 9:44
MehdiAnis7-Mar-06 9:44 
AnswerRe: SMTP Server Authentication : How To? Pin
Chris Dufour9-Mar-06 3:59
Chris Dufour9-Mar-06 3:59 
GeneralProb with CDA.Message Pin
Buxo7-Sep-05 23:38
Buxo7-Sep-05 23:38 
GeneralRe: Prob with CDA.Message Pin
Z789512313-Sep-05 7:50
Z789512313-Sep-05 7:50 
Generalhelp Pin
pradeesh83sharma5-Sep-05 3:49
pradeesh83sharma5-Sep-05 3:49 
GeneralRe: help Pin
gthekid26-Jul-07 11:57
gthekid26-Jul-07 11:57 
GeneralHTML format Pin
Member 202143715-Jul-05 5:22
Member 202143715-Jul-05 5:22 
GeneralRe: HTML format Pin
AdamNThompson3-Mar-08 17:19
AdamNThompson3-Mar-08 17:19 
GeneralRe: HTML format Pin
Chris_Inman15-Jun-11 13:04
Chris_Inman15-Jun-11 13:04 
GeneralSMTP Blocked By McAfee Virus Scan 8 Pin
Paul Gunston21-Mar-05 6:01
Paul Gunston21-Mar-05 6:01 
QuestionProblem with Import? Pin
Anonymous30-Sep-04 12:19
Anonymous30-Sep-04 12:19 
AnswerRe: Problem with Import? Pin
Anonymous14-Jul-05 2:49
Anonymous14-Jul-05 2:49 

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.