Click here to Skip to main content
15,881,092 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to send mail everyday evening 7pm using c# code please send me the c# code
Posted
Updated 10-Sep-12 1:44am
v2

Hello,

Quickest way to implement requested fynationality, You can write console application using C# which contain SMTP host and credential details in app.config file. class file will contain logic to send email as below :

using System;
using System.Collections.Generic;
using System.Text;
using System.Net.Mail;
using System.Net;

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Mail To");
MailAddress to = new MailAddress(Console.ReadLine());

Console.WriteLine("Mail From");
MailAddress from = new MailAddress(Console.ReadLine());

MailMessage mail = new MailMessage(from, to);

Console.WriteLine("Subject");
mail.Subject = Console.ReadLine();

Console.WriteLine("Your Message");
mail.Body = Console.ReadLine();

SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;

smtp.Credentials = new NetworkCredential(
"username@domain.com", "password");
smtp.EnableSsl = true;
Console.WriteLine("Sending email...");
smtp.Send(mail);
}


After creation of .EXE file, Please just schedule task using scheduler with Requested frequency.
 
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