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
Jayzle Coballes
NA
25
0
Asynchronous Sending of Mail
May 6 2013 4:09 AM
Hi,
I'm getting a timeout error after 100 seconds when sending an email with 87 recipients on the CC list. Just want to ask if below code will send an email asynchronously or will the application thread waits for the response for the sending of email process. Thanks.
SmtpClient mailClient = new SmtpClient(Server, Port);
Thread t = new Thread(delegate()
{
try
{
mailClient.Send(mail);
}
catch (Exception ex)
{
LogHelper.LogError(ex);
}
});
t.Start();
Reply
Answers (
3
)
272 in SuiteMask
How can i print gird (Like a form) in silverlight 5?