code below). Everything works quite well, actually, EXCEPT for one
particular email account. I've created an "admin" account that I'd like
to use to send emails from since GMail automatically replaces the
"from" field with whoever you're using to send emails from. When I use
this account, I get the following exception(s) (inner ones are
unraveled):
Could not access 'CDO.Message' object.
Exception has been thrown by the target of an invocation.
The message could not be sent to the SMTP server. The transport error
code was 0x80040217. The server response was not available
When i use my own personal gmail account, all is well. I have indeed
confirmed that my username and password are correct. :) Any ideas?
Thanks!
-MMAS
//code example
MailMessage mmAlert = new MailMessage();
mmAlert.From = strSenderEmail;
mmAlert.To = strRecipientEmail;
mmAlert.Priority = MailPriority.Normal;
SmtpMail.SmtpServer = "smtp.gmail.com";
// - smtp.gmail.com use smtp authentication
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate";,
"1");
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername";,
"[email address]");
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword";,
"some_pass");
// - smtp.gmail.com use port 465 or 587
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport";,
"465");
// - smtp.gmail.com use STARTTLS (some call this SSL)
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl";,
"true");
SmtpMail.Send(mmAlert);Google does not have a service for that, you will never accomplish this
cause Google Mail block external access from the Mail Servers
--
Bruno Alexandre
Kbenhavn, Danmark
"a Portuguese in Denmark"
Blog. http://balexandre.blogspot.com/
Photos. http://www.flickr.com/photos/balexandre/
"MMAS" <mustafashabib@.gmail.comwrote in message
news:1160783166.865336.327380@.h48g2000cwc.googlegr oups.com...
Quote:
Originally Posted by
I've got my .net application set up to use gmail as a mail server (see
code below). Everything works quite well, actually, EXCEPT for one
particular email account. I've created an "admin" account that I'd like
to use to send emails from since GMail automatically replaces the
"from" field with whoever you're using to send emails from. When I use
this account, I get the following exception(s) (inner ones are
unraveled):
>
Could not access 'CDO.Message' object.
Exception has been thrown by the target of an invocation.
The message could not be sent to the SMTP server. The transport error
code was 0x80040217. The server response was not available
>
When i use my own personal gmail account, all is well. I have indeed
confirmed that my username and password are correct. :) Any ideas?
>
Thanks!
-MMAS
>
//code example
MailMessage mmAlert = new MailMessage();
mmAlert.From = strSenderEmail;
mmAlert.To = strRecipientEmail;
mmAlert.Priority = MailPriority.Normal;
>
SmtpMail.SmtpServer = "smtp.gmail.com";
// - smtp.gmail.com use smtp authentication
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate";,
"1");
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername";,
"[email address]");
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword";,
"some_pass");
// - smtp.gmail.com use port 465 or 587
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport";,
"465");
// - smtp.gmail.com use STARTTLS (some call this SSL)
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl";,
"true");
>
SmtpMail.Send(mmAlert);
>
sorry, but as i said in the message, that code works 100% if I use one
particular gmail account I have. I created a new account and tried
using that instead, but it does NOT work. besides the
username/password, the code doesn't change between those accounts.
On Oct 14, 5:01 am, "Bruno Alexandre" <bruno.in...@.gmail.comwrote:
Quote:
Originally Posted by
Google does not have a service for that, you will never accomplish this
cause Google Mail block external access from the Mail Servers
>
--
>
Bruno Alexandre
Kbenhavn, Danmark
>
"a Portuguese in Denmark"
>
Blog.http://balexandre.blogspot.com/
Photos.http://www.flickr.com/photos/balexandre/
>
"MMAS" <mustafasha...@.gmail.comwrote in messagenews:1160783166.865336.327380@.h48g2000cwc.g ooglegroups.com...
>
Quote:
Originally Posted by
I've got my .net application set up to use gmail as a mail server (see
code below). Everything works quite well, actually, EXCEPT for one
particular email account. I've created an "admin" account that I'd like
to use to send emails from since GMail automatically replaces the
"from" field with whoever you're using to send emails from. When I use
this account, I get the following exception(s) (inner ones are
unraveled):
>
Quote:
Originally Posted by
Could not access 'CDO.Message' object.
Exception has been thrown by the target of an invocation.
The message could not be sent to the SMTP server. The transport error
code was 0x80040217. The server response was not available
>
Quote:
Originally Posted by
When i use my own personal gmail account, all is well. I have indeed
confirmed that my username and password are correct. :) Any ideas?
>
Quote:
Originally Posted by
Thanks!
-MMAS
>
Quote:
Originally Posted by
//code example
MailMessage mmAlert = new MailMessage();
mmAlert.From = strSenderEmail;
mmAlert.To = strRecipientEmail;
mmAlert.Priority = MailPriority.Normal;
>
Quote:
Originally Posted by
SmtpMail.SmtpServer = "smtp.gmail.com";
// - smtp.gmail.com use smtp authentication
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate";,
"1");
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername";,
"[email address]");
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword";,
"some_pass");
// - smtp.gmail.com use port 465 or 587
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport";,
"465");
// - smtp.gmail.com use STARTTLS (some call this SSL)
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl";,
"true");
Quote:
Originally Posted by
SmtpMail.Send(mmAlert);
See my
http://sholliday.spaces.live.com/blog/ 2/8/2006 ENTRY
I have 1.1 and 2.0 gmail/google mail smtp setup.
"MMAS" <mustafashabib@.gmail.comwrote in message
news:1160783166.865336.327380@.h48g2000cwc.googlegr oups.com...
Quote:
Originally Posted by
I've got my .net application set up to use gmail as a mail server (see
code below). Everything works quite well, actually, EXCEPT for one
particular email account. I've created an "admin" account that I'd like
to use to send emails from since GMail automatically replaces the
"from" field with whoever you're using to send emails from. When I use
this account, I get the following exception(s) (inner ones are
unraveled):
>
Could not access 'CDO.Message' object.
Exception has been thrown by the target of an invocation.
The message could not be sent to the SMTP server. The transport error
code was 0x80040217. The server response was not available
>
When i use my own personal gmail account, all is well. I have indeed
confirmed that my username and password are correct. :) Any ideas?
>
Thanks!
-MMAS
>
//code example
MailMessage mmAlert = new MailMessage();
mmAlert.From = strSenderEmail;
mmAlert.To = strRecipientEmail;
mmAlert.Priority = MailPriority.Normal;
>
SmtpMail.SmtpServer = "smtp.gmail.com";
// - smtp.gmail.com use smtp authentication
>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthe
nticate";,
Quote:
Originally Posted by
"1");
>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusern
ame";,
Quote:
Originally Posted by
"[email address]");
>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassw
ord";,
Quote:
Originally Posted by
"some_pass");
// - smtp.gmail.com use port 465 or 587
>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserve
rport";,
Quote:
Originally Posted by
"465");
// - smtp.gmail.com use STARTTLS (some call this SSL)
>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusess
l";,
Quote:
Originally Posted by
"true");
>
SmtpMail.Send(mmAlert);
>
sorry, I can't see
your page crash Firefox completly!
I get an error and have to restart firefox.
good page :)
i'm using firefox 1.5.0.7
--
Bruno Alexandre
Kbenhavn, Danmark
"a Portuguese in Denmark"
Blog. http://balexandre.blogspot.com/
Photos. http://www.flickr.com/photos/balexandre/
"sloan" <sloan@.ipass.netwrote in message
news:%23wGQQWg8GHA.2128@.TK2MSFTNGP05.phx.gbl...
Quote:
Originally Posted by
See my
http://sholliday.spaces.live.com/blog/ 2/8/2006 ENTRY
>
I have 1.1 and 2.0 gmail/google mail smtp setup.
>
>
>
>
"MMAS" <mustafashabib@.gmail.comwrote in message
news:1160783166.865336.327380@.h48g2000cwc.googlegr oups.com...
Quote:
Originally Posted by
>I've got my .net application set up to use gmail as a mail server (see
>code below). Everything works quite well, actually, EXCEPT for one
>particular email account. I've created an "admin" account that I'd like
>to use to send emails from since GMail automatically replaces the
>"from" field with whoever you're using to send emails from. When I use
>this account, I get the following exception(s) (inner ones are
>unraveled):
>>
>Could not access 'CDO.Message' object.
>Exception has been thrown by the target of an invocation.
>The message could not be sent to the SMTP server. The transport error
>code was 0x80040217. The server response was not available
>>
>When i use my own personal gmail account, all is well. I have indeed
>confirmed that my username and password are correct. :) Any ideas?
>>
>Thanks!
>-MMAS
>>
>//code example
>MailMessage mmAlert = new MailMessage();
>mmAlert.From = strSenderEmail;
>mmAlert.To = strRecipientEmail;
>mmAlert.Priority = MailPriority.Normal;
>>
>SmtpMail.SmtpServer = "smtp.gmail.com";
>// - smtp.gmail.com use smtp authentication
>>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthe
nticate";,
Quote:
Originally Posted by
>"1");
>>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusern
ame";,
Quote:
Originally Posted by
>"[email address]");
>>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassw
ord";,
Quote:
Originally Posted by
>"some_pass");
>// - smtp.gmail.com use port 465 or 587
>>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserve
rport";,
Quote:
Originally Posted by
>"465");
>// - smtp.gmail.com use STARTTLS (some call this SSL)
>>
mmAlert.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusess
l";,
Quote:
Originally Posted by
>"true");
>>
>SmtpMail.Send(mmAlert);
>>
>
>
0 comments:
Post a Comment