TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sandeep Vemula
1.2k
570
146.4k
Sending all mails from dataset
Feb 25 2012 5:09 AM
Hi, here am sending 999 mails per day.
so am getting prob while sending mail.
that is if any mail id is wrong the loop is quitting.
but i want to continue that loop until all mails i have to send.
this is my code.
(for example. these r mail ids.
[email protected]
,
[email protected]
, a ,
abc,
[email protected]
,
[email protected]
.
so here am getting error at a contact. here my loop is quitting. so my req is if am get error (string is not format like this type error ) still i have to send remaining mails)
)
foreach (DataRow dr in ds.Tables[1].Rows ' here consider 999 mail ids')
{
smtpclient.Host = "s0002";
MailMessage message = new MailMessage("
[email protected]
", dr["Email"].ToString());
message.Body = ds.Tables[0].Rows[0]["MessageBody"].ToString();
message.Subject = "Hi Mr/Mrs,";
smtpclient.Credentials = new System.Net.NetworkCredential("", "");
smtpclient.Port = 25;
smtpclient.Send(message);
}
Reply
Answers (
2
)
Reading HTML markups tag using C#
Call SQL Loader from C#