VBA Send Email To Outlook Distribution List

Lewzerrrr

Active Member
Joined
Jan 18, 2017
Messages
256
Hey,

Can send emails fine through VBA but can't work out how to send to an Outlook Distribution List e.g. "Team" = AAA <AAA@AAA.com>; BBB <BBB@AAA.com>; CCC <CCC@AAA.com>; DDD <DDD@AAA.com>

I can input the emails into VBA which is fine but would have to add to every macro if I need to add in extra emails when if I was able to do "Team" and update it in Outlook it should catch it?

However when I do..

.to = "Team" it would just place the word team lol.

Any help is appreciated, if any misunderstanding let me know
 

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.
Hey


Code:
' Outlook 2007 module
Sub Email()
Dim list As DistListItem, f As Folder, oItem As MailItem
Set f = Session.GetDefaultFolder(olFolderContacts)
f.ShowAsOutlookAB = True
Set list = f.Items(5)                                   ' the group
Set oItem = CreateItem(olMailItem)
With oItem
    .To = list
    .Body = "Today is Sunday."
    .Display
End With
End Sub
 
Upvote 0
Hey


Code:
' Outlook 2007 module
Sub Email()
Dim list As DistListItem, f As Folder, oItem As MailItem
Set f = Session.GetDefaultFolder(olFolderContacts)
f.ShowAsOutlookAB = True
Set list = f.Items(5)                                   ' the group
Set oItem = CreateItem(olMailItem)
With oItem
    .To = list
    .Body = "Today is Sunday."
    .Display
End With
End Sub

Thanks Worf, this seems to be struggling if I add more than one distribution list. What I tried to do was..
Code:
with oItem
.to = list & "; " & list1
.cc = list2

but seems to be a bit random as to whether it expands the group or underlines it with green so I can manually drag and expand it.

Is it possible to swap out the Set list = f.Items(5) for the actual name of the distribution list as other users won't necessarily be that index?
 
Last edited:
Upvote 0
Something like this:


Code:
' Outlook 2007 module
Sub Email()
Dim list1 As DistListItem, list2 As DistListItem, f As Folder, oItem As MailItem
Set f = Session.GetDefaultFolder(olFolderContacts)
f.ShowAsOutlookAB = True
Set list1 = f.Items("MyList")
Set list2 = f.Items("List2")
Set oItem = CreateItem(olMailItem)
With oItem
    .To = list1 & ";" & list2
    .Recipients.ResolveAll
    .Body = "Today is Tuesday."
    .Display
End With
End Sub
 
Upvote 0
Something like this:


Code:
' Outlook 2007 module
Sub Email()
Dim list1 As DistListItem, list2 As DistListItem, f As Folder, oItem As MailItem
Set f = Session.GetDefaultFolder(olFolderContacts)
f.ShowAsOutlookAB = True
Set list1 = f.Items("MyList")
Set list2 = f.Items("List2")
Set oItem = CreateItem(olMailItem)
With oItem
    .To = list1 & ";" & list2
    .Recipients.ResolveAll
    .Body = "Today is Tuesday."
    .Display
End With
End Sub

Hi Worf, before I could get this to work, I haven't fully coded this in yet but now i'm trying and excel isn't recognising distlistitem as an object? Can you advice?

I tried dim list1 as outlook.distlistitem and dim list1 as distlistitem but neither work?

Edit - my Outlook reference library turned off lol solved

Thanks,
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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