Emailing from Excel

Pekkavee

Well-known Member
Joined
May 25, 2004
Messages
1,218
I just became a member of the board of a Finnish Touring Motorcycle Club.
I have a BMW R1000 GS which is a wonderfull bike. :biggrin: :biggrin: :biggrin:

My responsibility is to take care of the member list and some info to the members.

How can I send Email to all the members, if I have their Email Address in column A in Excel. I am using Eudora in this case. Outlook could be possible as well.

Regards
Pekka
:eek: :eek: :eek:
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Well I have

Outlook 2002 and
Excel 2003

Maybe there is some problem between the versions.

Pekka
:eek: :eek: :eek:
 
Upvote 0
new2leeds_com said:
Gonna install Office 2003 and see if that fixes it.

Before doing that I think you could use this " late binding" method:



Late Binding



If you don't want to set a reference then you can use late binding.

This avoid problems when your workbook is used in different excel versions.



See ****'s site for a explanation
http://www.dicks-clicks.com/excel/olBinding.htm


Replace this three lines



Dim OutApp As Outlook.Application
Dim OutMail As Outlook.MailItem

Set OutMail = OutApp.CreateItem(olMailItem)



With this three



Dim OutApp As Object
Dim OutMail As Object

Set OutMail = OutApp.CreateItem(0)

Explained in here: http://www.rondebruin.nl/mail/folder3/message.htm

Pekka
:eek: :eek: :eek:
 
Upvote 0
I was running into the same problem. I fixed it by adding "localhost" to CreateObject:

Application.ScreenUpdating = False
Set OutApp = CreateObject("Outlook.Application", "localhost")
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,679
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top