View Single Post
  #5  
Old February 13th 09, 03:53 PM posted to microsoft.public.outlook.program_vba
Jason
external usenet poster
 
Posts: 117
Default How to send email to list of individuals

Here is the code that I have, but I keep getting an error that says "user
defined type not defined. Any help would be appreciated

Sub Macro1()
Dim myOlApp As New Outlook.Application
Dim myItem As Outlook.MailItem


Dim olApp As Outlook.Application

Dim olMsg As Outlook.MailItem




Set olApp = Outlook.Application

Set olMsg = olApp.CreateItem(olMailItem)



With olMsg

Dim Xl As Excel.Application
Dim Ws As Excel.Worksheet
Dim Rn As Excel.Range

Set Xl = GetObject(, "Excel.Application")
Set Ws = Xl.Workbooks("book1.xls").Worksheets(1)

Set Rn = Ws.Range("a1")
While Rn.Value ""
.Recipients.Add Rn.Value
Set Rn = Rn.Offset(1, 0)
Wend

.CC = "xxx"
.Subject = "xxx"

.Display
.Body = "xxx" & .Body
.Body = "xxx" & .Body

.Attachments.Add "xxx"


End With
End Sub


"Michael Bauer [MVP - Outlook]" wrote:



The loop could look like this:

While Rn.Value""
.Recipients.Add Rn.Value
Set Rn=Rn.Offset(1,0)
Wend

Add the code to the With olMsg block.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: http://www.vboffice.net/product.html?pub=6&lang=en


Am Tue, 10 Feb 2009 09:41:05 -0800 schrieb jason:

I am really a novice at this, where do I place this code and how do I make

it
loop?

"Michael Bauer [MVP - Outlook]" wrote:


Assuming, Excel is already running, and the first address is in cell

"a1":

Dim Xl As Excel.Application
Dim Ws As Excel.Worksheet
Dim Rn As Excel.Range

Set Xl = GetObject(, "Excel.Application")
Set Ws = Xl.Workbooks("Mappe1.xls").Worksheets(1)

Set Rn = Ws.Range("a1")

Now you can read Rn.Value for the first address, then loop through the

rows
with the Offset function until the Value="".

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: http://www.vboffice.net/product.html?pub=6&lang=en



Am Tue, 10 Feb 2009 08:45:02 -0800 schrieb jason:

I have the below code to generate an email, I would like to add a To:
block
and take the list of receipiants from an excel spreadsheet that updates
daily. How can this be done.

Sub Macro1()



Dim olApp As Outlook.Application

Dim olMsg As Outlook.MailItem



Set olApp = Outlook.Application

Set olMsg = olApp.CreateItem(olMailItem)



With olMsg



.Subject = "Hello world"

.Display

.Body = "Hello, here is my email!" & .Body

End With



Set olMsg = Nothing

Set olApp = Nothing

End Sub


Ads