M
Marceepoo
1. I can't figure out how to add a bcc recipient to an email I've already
created. I've been using the macro below (which works) to create a new
email, but I'd like to use a macro to add a bcc to an existing email, so that
I don't have to wait for the mailbox window.
2. In the macro below (cannibalized from ), the email address is used for
the recipient, instead of the Outlook name of the recipient. How could I
change the macro to instruct Outlook to use the name (of the recipient) in an
address book?
Thanks for any ideas. Here's my macro....
Sub Add_NM()
Dim myOlApp As Outlook.Application
Dim myItem As Outlook.MailItem
Dim myRecipient As Outlook.Recipient
'
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olMailItem)
Set myRecipient = myItem.Recipients.Add("[email protected]")
'
myRecipient.Type = olBCC
myItem.Display
End Sub
created. I've been using the macro below (which works) to create a new
email, but I'd like to use a macro to add a bcc to an existing email, so that
I don't have to wait for the mailbox window.
2. In the macro below (cannibalized from ), the email address is used for
the recipient, instead of the Outlook name of the recipient. How could I
change the macro to instruct Outlook to use the name (of the recipient) in an
address book?
Thanks for any ideas. Here's my macro....
Sub Add_NM()
Dim myOlApp As Outlook.Application
Dim myItem As Outlook.MailItem
Dim myRecipient As Outlook.Recipient
'
Set myOlApp = CreateObject("Outlook.Application")
Set myItem = myOlApp.CreateItem(olMailItem)
Set myRecipient = myItem.Recipients.Add("[email protected]")
'
myRecipient.Type = olBCC
myItem.Display
End Sub