-
Hi, I am working in asp.net 2.0 with C#. Now i have to send some mail messages from my web page to some email address. I have tried some methods, in some cases it works without any errors. but it never deliver mails to the destination address. Will anybody help me to solve this: if you have any working samples please let me know Thanks in advance Sebastian
-
Hi, I am working in asp.net 2.0 with C#. Now i have to send some mail messages from my web page to some email address. I have tried some methods, in some cases it works without any errors. but it never deliver mails to the destination address. Will anybody help me to solve this: if you have any working samples please let me know Thanks in advance Sebastian
i have done this.. it's working fine Imports System Imports System.web Imports System.web.Mail Dim objMail As New MailMessage() objMail.From = "test@test.com" objMail.To = "test@test.com" objMail.Subject = "Testing" objMail.Body = "Testing" Mail.SmtpMail.Send(objMail) hope it will work for u
Thanks, Sun Rays
-
Hi, I am working in asp.net 2.0 with C#. Now i have to send some mail messages from my web page to some email address. I have tried some methods, in some cases it works without any errors. but it never deliver mails to the destination address. Will anybody help me to solve this: if you have any working samples please let me know Thanks in advance Sebastian
-
i have done this.. it's working fine Imports System Imports System.web Imports System.web.Mail Dim objMail As New MailMessage() objMail.From = "test@test.com" objMail.To = "test@test.com" objMail.Subject = "Testing" objMail.Body = "Testing" Mail.SmtpMail.Send(objMail) hope it will work for u
Thanks, Sun Rays
thanks for your reply. let me check this out. Sebastian
-
thanks for your reply. let me check this out.
-
i have done this.. it's working fine Imports System Imports System.web Imports System.web.Mail Dim objMail As New MailMessage() objMail.From = "test@test.com" objMail.To = "test@test.com" objMail.Subject = "Testing" objMail.Body = "Testing" Mail.SmtpMail.Send(objMail) hope it will work for u
Thanks, Sun Rays
Again I got the same result. i has been sent , without any errors, warnings. but not yet droped in to the receiver. what will be the problem. Thanks Sebastian
-
I have read the details and tried that method. But again I got the same result. i has been sent , without any errors, warnings. but not yet droped in to the receiver. what will be the problem. Thanks Sebastian
-
I have read the details and tried that method. But again I got the same result. i has been sent , without any errors, warnings. but not yet droped in to the receiver. what will be the problem. Thanks Sebastian
It could be any number of problems unfortunately. Some that I can think of are: 1) SMTP Server not setup 2) SMTP Server not forwarding emails 3) Network issue 4) Email address incorrect 5) Junk mail rules stopping email
Mark, http://aspnetlibrary.com
ASP.NET
8
Posts
3
Posters
0
Views
1
Watching