HighTechTalks DotNet Forums  

email

ASP.net Web Services microsoft.public.dotnet.framework.aspnet.webservices


Discuss email in the ASP.net Web Services forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
Jaez
 
Posts: n/a

Default email - 02-17-2007 , 03:11 AM






I am new to asp.net 2 and am struggling with emailing to a list of
addresses

I can send emails OK using:

Dim MailObj As New System.Net.Mail.SmtpClient
MailObj.Send(EmFrom.Text, EmTo.Text, EmSubj.Text, EmMsg.Text)

but I seem to be unable to detect if an email fails to send ie if the
address has a typo or the address is not able to receive an email

in php I might write something like:

if (mail($to, $subject, $body)) { echo("<p>Message successfully
sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); }

so is thier an equivalent structure in asp.net 2

Thanks

jaez



Reply With Quote
  #2  
Old   
Bruno Alexandre
 
Posts: n/a

Default Re: email - 02-17-2007 , 02:04 PM






all you have to do is you try/catch

try
Dim MailObj As New System.Net.Mail.SmtpClient
MailObj.Send(EmFrom.Text, EmTo.Text, EmSubj.Text, EmMsg.Text)
Catch ex as Exception
response.write("<p>Message delivery failed...</p>")
response.flush()
End Catch

and please... dont mention PHP! that it's not even a programing language !
it's a scripting language live Javascript is...



"Jaez" <jaezms (AT) ntlworld (DOT) com> wrote

Quote:
I am new to asp.net 2 and am struggling with emailing to a list of
addresses

I can send emails OK using:

Dim MailObj As New System.Net.Mail.SmtpClient
MailObj.Send(EmFrom.Text, EmTo.Text, EmSubj.Text, EmMsg.Text)

but I seem to be unable to detect if an email fails to send ie if the
address has a typo or the address is not able to receive an email

in php I might write something like:

if (mail($to, $subject, $body)) { echo("<p>Message successfully
sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); }

so is thier an equivalent structure in asp.net 2

Thanks

jaez


Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.