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

Easily Send E-mail in VB.net

Rate me:
Please Sign up or sign in to vote.
2.60/5 (7 votes)
12 Sep 2008CPOL 53K   5.3K   22   2
This is an easiest program that allows you to send e-mails by only defining SMTP Server name.

Introduction

This is an easiest program to send an e-mail using vb.net

Background

This program requires to import System namespace and creating an object of system,net.mail.Smtpclient and passing SMTP Server name as an argument.

First it is required to define SMTP Mail server name.

G-Emailer

Using the code

You have to only define SMTP mail server name.

Now passing this server name as an argument to smtp client , and create and object which accepts to,from,subject and body of e-mail message.

Dim EmailServer As New System.Net.Mail.SmtpClient("Mail server name")    

Dim myMessage As New System.Net.Mail.MailMessage("Sender's address", "Receiver's address", "Subject", "Main msg")    

snap2.jpg

Now pass this myMessage object as argument to Emailserver.send(myMessage).

History

This is the easiest approach that I found for sending e-mails in VB.net 

If you like this article then vote me.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalvery simple - but well presented example Pin
Simon_Whale23-Feb-10 4:40
Simon_Whale23-Feb-10 4:40 
General[Message Removed] Pin
nompel1-Oct-08 7:36
nompel1-Oct-08 7:36 

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.