Sponsored by
www.aspnetemail.com
|
 |
Discuss This FAQ Item
Got a question? Another Suggestion? Want to post your solution? Discuss it below.
-
452 filesystem error
[ Reply ]
On a mailing list , my sent messages are sending themselves several times over. Anything I can do to sort this ?
Geo [ gerrycass ( at ) ntlworld dot com ],
2004-05-18 09:28:23
#
-
System.Web.HttpException: Could not access 'CDO.Message' object
[ Reply ]
I am getting this message when i am sedingmail out side my company using System.web.mail System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x80040211): The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available --- End of inner exception stack trace --- at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters) at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) --- End of inner exception stack trace --- at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) at System.Web.Mail.CdoSysHelper.Send(MailMessage message) at System.Web.Mail.SmtpMail.Send(MailMessage message) at DimpleSoftwares.Products.Page_Load(Object sender, EventArgs e)mail.dimplesoftwares.com
I have tried very thing i.e authontication, smtpserver.insert, but not wroking
Please help!
kalpesh [ kalpesh_computer ( at ) yahoo dot com ],
2005-06-03 08:17:02
#
-
RE: System.Web.HttpException: Could not access 'CDO.Message' object
[ Reply ]
System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x8004020F): The server rejected one or more recipient addresses. The server response was: 503 This mail server requires authentication when attempting to send to a non-local e-mail address. Please check your mail client settings or contact your administrator to verify that the domain or address is defined for this server. --- End of inner exception stack trace --- at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters) at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) --- End of inner exception stack trace --- at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName, Object[] args) at System.Web.Mail.CdoSysHelper.Send(MailMessage message) at System.Web.Mail.SmtpMail.Send(MailMessage message) at bharat.viewResults.mailtoclient()
hisham [ mail2hisham ( at ) gmail dot com ],
2007-04-27 04:24:34
#
-
server response was not available
[ Reply ]
hi all, i am trying to send a simple, I am new to this and i am getting an exception "the message coulnot be sent to the smtpserver. The transport error code was 0x80040217. The server response was not available" I have used 127.0.0.1 and changed it to localhost and also used blank smtpmail.smtpserver according to some of the solutions. but it didnt go any better. will anyone who dealt with this situation please post me the solution. its urgent!!(( thank you, sushma
sushma [ sushu05 ( at ) yahoo dot com ],
2005-07-20 22:30:52
#
-
RE: server response was not available
[ Reply ]
thanks for everyone, i didnt get even a single mail from you.which is very sad.. but i have solved my problem
sushma [ sushu05 ( at ) yahoo dot com ],
2005-07-20 23:15:15
#
-
RE RE: server response was not available
[ Reply ]
hello,
how did you solve the problem with the smtp server? I have the same problem, and i can't find a fix anywhere. I would appreciate some help on this...
vali [ angeletto ( at ) raisoftware dot ro ],
2005-07-22 01:54:06
#
-
RE RE: server response was not available
[ Reply ]
dear friends,
I have doing my project in asp.net, in that problem to sending mail with smtp service in IIS 5.1. System.Runtime.InteropServices.COMException: The transport failed to connect to the server.
In properties of SMTP Server, i saw the running port is tcp 25.
but i think my mailserver is not running,
I try to open my mailserver in port 25 in Telnet.
bet it say Could not open the connection on port 25: connection failed.
I can not know what i to do!
Is my mailserver is running correctly?
Please help me rectify this problem.!
thanks.
Selva38@gmail.com
selvakumar [ selva38 ( at ) gmail dot com ],
2006-04-11 02:46:30
#
-
RE: server response was not available
[ Reply ]
Hi Sushma, It wud have been great if u wud have mentioned what did u do to stop that error. Its not that nobody is willing to help u out in this forum, but it may be that they are not sure abt the solution. You shud be generous enuf to share ur learnings. Hope to see ur solution in this forum.
Regards, Venkatesh.R
Venkatesh [ venkinath ( at ) yahoo dot com ],
2007-06-21 00:45:40
#
-
error-sending mail to gmail account
[ Reply ]
error is
The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available
my code
try { CDO.Message OMsg = new CDO.Message (); OMsg.From = "chilakamahesh@gmail.com"; OMsg.To = "chilakamahesh@gmail.com"; OMsg.Subject = "MailTest"; OMsg.HTMLBody = "<html><body>Test</body></html>"; CDO.IConfiguration iConfg = OMsg.Configuration; ADODB.Fields OFields = iConfg.Fields; OFields ["http://schemas.microsoft.com/cdo/configuration/sendusing" ].Value=2; OFields ["http://schemas.microsoft.com/cdo/configuration/sendemailaddress" ].Value= "xxxx@gmail.com"; //sender mail oFields ["http://schemas.microsoft.com/cdo/configuration/smtpaccountname" ]Value= "myaccount@test.com"; //email account oFields ["http://schemas.microsoft.com/cdo/configuration/sendusername" ] Value= "username"; OFields ["http://schemas.microsoft.com/cdo/configuration/sendpassword" ]. Value="xxxxx"; OFields ["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" ].Value=1; //value=0 (does not need to confirm) //value=1 on behalf of the Anonymous confirmation way (to use basic on behalf of the Basic confirmation way (clear-text) authentication. //The configuration sendusername/sendpassword or postusername/postpassword fields are used to specify credentials.) //Value=2 represents the NTLM confirmation way (Secure Password Authentication in Microsoft Outlook Express) OFields ["http://schemas.microsoft.com/cdo/configuration/languagecode" ].Value=0x0804; OFields ["http://schemas.microsoft.com/cdo/configuration/smtpserverport" ].Value=465; OFields ["http://schemas.microsoft.com/cdo/configuration/smtpusessl" ].Value=1; OFields ["http://schemas.microsoft.com/cdo/configuration/smtpserver" ]. Value="smtp.gmail.com"; OFields.Update (); OMsg.BodyPart.Charset="gb2312"; OMsg.HTMLBodyPart.Charset= "gb2312"; OMsg.Send (); OMsg = null; } catch (Exception ex) {Response.Write( ex.Message); } }
mahesh [ chilakamahesh ( at ) yahoo dot co dot in ],
2006-08-03 21:07:39
#
-
genral
[ Reply ]
tisadffdsa dasdsa
nitesh [ nema_nitesh ( at ) yahoo dot com ],
2007-04-28 05:38:11
#
-
error 452 outlook express
[ Reply ]
after i get back the error message 452, too many reciepients specified, stopping at xxx@ccc, did the email go out to the original list before xxx@ccc, before it became too many recipients. or do i have to break up the list of recipients and send it all again?thanks.
alisa [ alisaw99 ( at ) optonline dot net ],
2008-02-14 13:44:43
#
|