Click here to Skip to main content
15,888,967 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am new to the COnsole applications .I created a console application with the help of few articles i searched from google and each article says a different approach.

I am trying to create a new console application that can send an e-mail.

Could anyone please suggest me with links where to get started.
Posted

Hi,

you can Refer Following Links
Googling[]
 
Share this answer
 
sending email form any .net application is not hard.
include in your class:

C#
using System.Net.Mail;

use MailMessage object[^] to create the email and use
SmtpClient object[^] to send via email.

Furthermore keep using Google to find this[^] and use the example in the page.

Have fun coding!
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900