I'm trying to find a way to email a group of contacts in a folder a message, but send it to them each individually and include their orginal email text/correspondence.
I found this post about mass emailing a folder:
http://www.msoutlook.info/question/525
which works great, but it doesn't include their orgianal text.
Does anyone know if there's a code I can add to an outlook email template that will include the original email and hopefully subject line?
I've also tried doing a similar approach with a VB Script....maybe using code something close to:
Sub EmailReply()
Dim Reply As Outlook.MailItem
Dim Original As Outlook.MailItem
Set Original = Application.ActiveExplorer.Selection(1)
Set Reply = Original.Reply
Reply.Attachments.Add Original
Reply.Subject = "Important Notice"
Reply.Body = "Body text to be entered here"
Reply.Display
Reply.Send
End Sub
But can't seem to get that to work either. Any help would be awesome!
I found this post about mass emailing a folder:
http://www.msoutlook.info/question/525
which works great, but it doesn't include their orgianal text.
Does anyone know if there's a code I can add to an outlook email template that will include the original email and hopefully subject line?
I've also tried doing a similar approach with a VB Script....maybe using code something close to:
Sub EmailReply()
Dim Reply As Outlook.MailItem
Dim Original As Outlook.MailItem
Set Original = Application.ActiveExplorer.Selection(1)
Set Reply = Original.Reply
Reply.Attachments.Add Original
Reply.Subject = "Important Notice"
Reply.Body = "Body text to be entered here"
Reply.Display
Reply.Send
End Sub
But can't seem to get that to work either. Any help would be awesome!