Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Sending mail from Excel with CDO by Ron de Bruin

It seems that my 1st post is not appearing in group so posting again.

I am using CDO code for sending mail from excel given by Ron de Bruin
at
http://www.rondebruin.nl/cdo.htm
1st code on page.

I am getting error as below.

Microsoft Visual Basic
Run-time error '-2147220973 (80040213)’:
The transport failed to connect to the server.

using Excel 2007 and outlook 2007.

Pl help.

Regards,
Madiya
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 259
Default Sending mail from Excel with CDO by Ron de Bruin

On 29/09/2011 10:49 PM, Mumbai WH wrote:
It seems that my 1st post is not appearing in group so posting again.

I am using CDO code for sending mail from excel given by Ron de Bruin
at
http://www.rondebruin.nl/cdo.htm
1st code on page.

I am getting error as below.

Microsoft Visual Basic
Run-time error '-2147220973 (80040213)’:
The transport failed to connect to the server.

using Excel 2007 and outlook 2007.

Pl help.

Regards,
Madiya



Madiya

did you read this section:

Read this!!!

This code will not work in Win 98 and ME.
You must be connected to the internet when you run a example.

It is possible that you get a Send error when you use one of the examples.
AFAIK : This will happen if you haven't setup an account in Outlook
Express or Windows Mail.
In that case the system doesn't know the name of your SMTP server.
If this happens you can use the commented green lines in each example.
Don't forget to fill in the SMTP server name in each code sample where
it says "Fill in your SMTP server here"

When you also get the Authentication Required Error you can add this
three lines.
..Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") =
"username"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") =
"password"

Don't remove the TextBody line in the code. If you do you can't open
the attachment (bug in CDO).
If you don't want to have text in the body use this then .TextBody = ""

Note: It is always possible that your firewall block the code (Check
your firewall settings)


As you have not posted the actual code you are using and any references
it is difficult to pinpoint the problem.

HTH
Mick.
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 239
Default Sending mail from Excel with CDO by Ron de Bruin

On Sep 29, 6:53*pm, Vacuum Sealed wrote:
On 29/09/2011 10:49 PM, Mumbai WH wrote:









It seems that my 1st post is not appearing in group so posting again.


I am using CDO code for sending mail from excel given by Ron de Bruin
at
http://www.rondebruin.nl/cdo.htm
1st code on page.


I am getting error as below.


Microsoft Visual Basic
Run-time error '-2147220973 (80040213) :
The transport failed to connect to the server.


using Excel 2007 and outlook *2007.


Pl help.


Regards,
Madiya


Madiya

did you read this section:

Read this!!!

* This code will not work in Win 98 and ME.
* You must be connected to the internet when you run a example.

* It is possible that you get a Send error when you use one of the examples.
AFAIK : This will happen if you haven't setup an account in Outlook
Express or Windows Mail.
In that case the system doesn't know the name of your SMTP server.
* If this happens you can use the commented green lines in each example..
Don't forget to fill in the SMTP server name in each code sample where
it says "Fill in your SMTP server here"

* When you also get the Authentication Required Error you can add this
three lines.
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
* .Item("http://schemas.microsoft.com/cdo/configuration/sendusername") =
"username"
* .Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") =
"password"

* Don't remove the TextBody line in the code. If you do you can't open
the attachment (bug in CDO).
* If you don't want to have text in the body use this then .TextBody = ""

Note: It is always possible that your firewall block the code (Check
your firewall settings)

As you have not posted the actual code you are using and any references
it is difficult to pinpoint the problem.

HTH
Mick.


Yes. I have already made that addition but still facing the same
error.
I have also tried to change the port number from 25 to 465 but still
same error.
Here is the code I am using.
=====================
Sub CDO_Mail_Small_Text()
Dim iMsg As Object
Dim iConf As Object
Dim strbody As String
Dim Flds As Variant

Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")

iConf.Load -1 ' CDO Source Defaults
Set Flds = iConf.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/
sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/
smtpserver") _
= "smtp.gmail.com"
.Item("http://schemas.microsoft.com/cdo/configuration/
smtpserverport") = 465
.Item("http://schemas.microsoft.com/cdo/configuration/
smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/
sendusername") = "
.Item("http://schemas.microsoft.com/cdo/configuration/
sendpassword") = "123456789"
.Update
End With

strbody = "Hi there" & vbNewLine & vbNewLine & _
"This is line 1" & vbNewLine & _
"This is line 2" & vbNewLine & _
"This is line 3" & vbNewLine & _
"This is line 4"

With iMsg
Set .Configuration = iConf
.To = "
.CC = ""
.BCC = ""
.From = "
.Subject = "New figures CDO MAIL"
.TextBody = strbody
.Send
End With

End Sub
=======================
Pl help.

Regards,
Madiya
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 86
Default Sending mail from Excel with CDO by Ron de Bruin

On 9/29/2011 7:49 AM, Madiya wrote:
On Sep 29, 6:53 pm, Vacuum wrote:
On 29/09/2011 10:49 PM, Mumbai WH wrote:









It seems that my 1st post is not appearing in group so posting again.


I am using CDO code for sending mail from excel given by Ron de Bruin
at
http://www.rondebruin.nl/cdo.htm
1st code on page.


I am getting error as below.


Microsoft Visual Basic
Run-time error '-2147220973 (80040213) :
The transport failed to connect to the server.


using Excel 2007 and outlook 2007.


Pl help.


Regards,
Madiya


Madiya

did you read this section:

Read this!!!

This code will not work in Win 98 and ME.
You must be connected to the internet when you run a example.

It is possible that you get a Send error when you use one of the examples.
AFAIK : This will happen if you haven't setup an account in Outlook
Express or Windows Mail.
In that case the system doesn't know the name of your SMTP server.
If this happens you can use the commented green lines in each example.
Don't forget to fill in the SMTP server name in each code sample where
it says "Fill in your SMTP server here"

When you also get the Authentication Required Error you can add this
three lines.
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") =
"username"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") =
"password"

Don't remove the TextBody line in the code. If you do you can't open
the attachment (bug in CDO).
If you don't want to have text in the body use this then .TextBody = ""

Note: It is always possible that your firewall block the code (Check
your firewall settings)

As you have not posted the actual code you are using and any references
it is difficult to pinpoint the problem.

HTH
Mick.


Yes. I have already made that addition but still facing the same
error.
I have also tried to change the port number from 25 to 465 but still
same error.
Here is the code I am using.
=====================
Sub CDO_Mail_Small_Text()
Dim iMsg As Object
Dim iConf As Object
Dim strbody As String
Dim Flds As Variant
Set iMsg = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
iConf.Load -1 ' CDO Source Defaults
Set Flds = iConf.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.gmail.com"
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 465
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "123456789"
.Update
End With
strbody = "Hi there"& vbNewLine& vbNewLine & "This is line 1" & vbNewLine& _
"This is line 2" & vbNewLine& "This is line 3"& vbNewLine& This is line 4"
With iMsg
Set .Configuration = iConf
.To = "
.CC = ""
.BCC = ""
.From = "
.Subject = "New figures CDO MAIL"
.TextBody = strbody
.Send
End With

End Sub
=======================
Pl help.

Regards,
Madiya


This post mentions port 587

http://forums.asp.net/p/1235845/4145...+SmtpCli ent+
---

This is slightly different, it worked for the author:

Dim lobj_cdomsg As CDO.message
Set lobj_cdomsg = New CDO.message
With lobj_cdomsg.Configuration
..Fields(cdoSMTPServer) = "smtp.gmail.com"
..Fields(cdoSMTPConnectionTimeout) = 60
..Fields(cdoSendUsingMethod) = cdoSendUsingPort
..Fields(cdoSMTPServerPort) = 465
..Fields(cdoSMTPAuthenticate) = True
..Fields(cdoSMTPUseSSL) = True
..Fields(cdoSendUserName) = "
..Fields(cdoSendPassword) = "xxxxx"
..Fields.Update
End With

http://www.codeguru.com/forum/showthread.php?t=461327

Mike

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 86
Default Sending mail from Excel with CDO by Ron de Bruin

<snip

This post mentions port 587
http://forums.asp.net/p/1235845/4145...+SmtpCli ent+


Here's google on port 587:

http://mail.google.com/support/bin/a...n&answer=13287

Outgoing Mail (SMTP) Server - requires TLS3 or SSL:
smtp.gmail.com (use authentication)
Use Authentication: Yes
Port for TLS/STARTTLS: 587
Port for SSL: 465

TLS: TLS (Transport Layer Security) is a way of changing data such as
your username and password into code as it travels across the Internet,
so that the data will be secure and private. With mail delivery, TLS
begins with an unsecured connection to the mail servers, and then
upgrades to a secure connection once information is sent.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Sending e-mail with Excel djExcel Excel Programming 1 November 5th 07 10:06 AM
Sending mail via excel navin Excel Programming 2 November 11th 06 03:23 PM
General mail failure when sending e-mail from Excel Adrienne Excel Discussion (Misc queries) 5 November 4th 05 12:59 PM
Sending Mail from within Excel Don Lloyd Excel Programming 2 July 24th 04 09:28 PM


All times are GMT +1. The time now is 09:58 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"