M
mntn-biker
Newbie here and have virtually no vba experience but have a hopefully
simple question. Is it possible to launch a macro within a rule in
Outlook 2003? Here is the macro that I want to launch when I receive an
e-mail from a customer:
Sub txtmsgfw()
Dim msg As Outlook.MailItem
Set msg = Application.CreateItem(olMailItem)
msg.Subject = "Email from Customer"
msg.Display
Set msg = Nothing
End Sub
I am using the rule to create a new simple e-mail message that I can
have forwarded to my cell phone as a text message. I cannot simply use
forwarding since some e-mails from my customers have 8mb attachments and
those don't fly. I don't see anyplace within the rules that can launch
a macro unless I am missing it.
Thanks - Mike
simple question. Is it possible to launch a macro within a rule in
Outlook 2003? Here is the macro that I want to launch when I receive an
e-mail from a customer:
Sub txtmsgfw()
Dim msg As Outlook.MailItem
Set msg = Application.CreateItem(olMailItem)
msg.Subject = "Email from Customer"
msg.Display
Set msg = Nothing
End Sub
I am using the rule to create a new simple e-mail message that I can
have forwarded to my cell phone as a text message. I cannot simply use
forwarding since some e-mails from my customers have 8mb attachments and
those don't fly. I don't see anyplace within the rules that can launch
a macro unless I am missing it.
Thanks - Mike