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
Mayur Gujrathi
NA
119
403k
About Sending mails
Feb 3 2011 6:01 AM
Dear experts I am sending mails in following way but when i use mail address other than gmail address in txtemail then it gets problem please give me one stop solution. in txtpass user have to give its correct password.
SmtpClient serverobj = new SmtpClient();
serverobj.Credentials = new NetworkCredential(txtemail.Text,txtepass.Text);
serverobj.Port = 25;
serverobj.Host = "smtp.gmail.com";
serverobj.EnableSsl = true;
MailMessage msgobj = new MailMessage();
msgobj.From = new MailAddress(txtemail.Text, "Click On Following Link To confirm Registration", System.Text.Encoding.UTF8);
msgobj.To.Add("
[email protected]
");
msgobj.Subject = ("Confirm your registration");
msgobj.Body = "http://localhost:1330/activationpage.aspx?username=" + txtuname.Text;
msgobj.DeliveryNotificationOptions = DeliveryNotificationOptions.OnFailure;
serverobj.Send(msgobj);
Response.Write("We have send a link on your mail please Confirm your registration by clicking on it");
Reply
Answers (
6
)
Disable mouse right click on textbox
Asp.net Project with Sql connection