Rules Wizard

Status
Not open for further replies.

critzos

Member
Outlook version
Older version
Email Account
Exchange Server
How can I create a rule that sends (not forwards) an email to a specific recipient if I receive an email from some other sender. I.E. Person 1 sends me an email, now I would like to send person 2 an email - actually a notification with the same message each time I receive an email from Person 1. Thanks for any help.
 
I think you'll need to create a script to use with Rules. Unless you are out of office, then you can do something like you want.
 
Can you walk me through how to create a script?
 
Re: Rules Wizard 'run a script'

For some reason, VBA just confuses me.

I found a VBA script that I modified for my XP machine, that is triggered by a new file being created in a monitored folder. That VBA script is:

Set objEmail = CreateObject("CDO.Message")

objEmail.From = "me@mydomain.com"

objEmail.To = "you@mydomain.com"

objEmail.Subject = "New Fax Arrived"

objEmail.Textbody = "New Fax has just arrived."

objEmail.Send

That notifies me with a short e-mail when a new fax has been saved as a file in a particular folder.

I wanted to use this same concept for when an eFax arrives via e-mail. In the Rules Wizard, I recognize the e-mail 'with specific words in the subject', then, using 'run a script', I wanted to get a short e-mail message on my phone. I can't seem to get Outlook 2010 to 1) put the script's title where I can find it, and 2) understand how to incorporate that with the 'Item As Outlook.MailItem' or 'Item As Outlook.MeetingItem' so it will run.

Is someone who sees this as a simple issue help me get this to work?

A sincere thank you.

fr8549
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
D Rules Wizard Outlook 2010 limitations Using Outlook 1
M Outlook 2010 Rules Wizard Enter Multiple Items at once? Using Outlook 0
L How to develop a custom action which can used in Rules Wizard? Outlook VBA and Custom Forms 2
L Run A Script not listed in rules wizard Outlook VBA and Custom Forms 12
R How to simplify rules Using Outlook 2
J Recover server side rules from OST/PST without access to the server Using Outlook 2
J Outlook Rules VBA Run a Script - Multiple Rules Outlook VBA and Custom Forms 0
N Outlook 2021 'Run Script" Rules? Outlook VBA and Custom Forms 4
K Multiple Rules on Single Email Using Outlook 2
Aussie Rules Run a Script on an Incoming Email OK and then the Email reverts Outlook VBA and Custom Forms 0
R rules not working - done troubleshooting Using Outlook 0
P Outlook 2013 All imported Mail Rules in error when imported into new profile Using Outlook 5
A Apply Selected Emails to outlook rules and Run Rules Using Outlook 5
Wayne Outlook locks up when opening "Manage Rules & Alerts" Using Outlook 7
T "Words In Recipient's Address" Rule Causes Outlook To Stop Processing Rules Using Outlook 3
Retired Geek Junk Folder Clean Up Rules Exchange Server Administration 1
B Setting rules Using Outlook 1
A rules not working Using Outlook 2
M Rules and autoreply Using Outlook 1
N Outlook rules don't create a copy for bcc'ed emails Using Outlook 3
O How to recover rules after switch from POP3 to IMAP Using Outlook 2
N Focussed Inbox Rules Failing Using Outlook 5
N Copies of emails from rules have wrong from: account Using Outlook 0
L Office 365 cloud based rules Using Outlook 1
K Outlook Rules: Move a Copy Using Outlook 4
CWM030 Rules disappearing in OL 2016? ( Yes, I searched before posting) Using Outlook 7
R When rules lose track of "specified folder" Using Outlook 6
I Outlook 2013 Rules - (client only) Using Outlook.com accounts in Outlook 1
B When I add more search strings to RULES, it is not processing them Using Outlook 3
O Having rules run on old mails noved to inbox Outlook VBA and Custom Forms 8
A rules (flags) not working Using Outlook 7
K Lost Rules. Assistant accesses my mailbox. Disappeared Using Outlook 0
soadfan Outlook rules look up display name only Using Outlook 4
S Send email via SMTP - use transport rules to add to senders inbox (then rule to move to sent items Exchange Server Administration 1
Justo Horrillo Issue with rules in Outlook 2010 Using Outlook 4
J Outlook Rules - Changing auto-submit address in multiple rules, according to rule name Outlook VBA and Custom Forms 0
R When rules are working but invisible and unmanageable Using Outlook 2
P Transport Agent or Rules/Connectors Exchange Server Administration 1
A Rules - how to determine if all conditions in rule are true or false Outlook VBA and Custom Forms 5
E Outlook 2010 need help with rules Using Outlook 0
O Rules and Alerts for New Messages BEFORE sending Using Outlook 2
D Outlook Rules Using Outlook 1
Diane Poremsky Autoaccept a Meeting Request using Rules Using Outlook 2
K adding more rules to 'different domains check' macro Outlook VBA and Custom Forms 2
Gunny NFOhiway Outlook PST file and Rules Using Outlook 1
M Outlook 2016 Rules Not Working Automatically Using Outlook 5
Diane Poremsky Rules & Alerts Dialog Won't Open Using Outlook 1
soadfan Enable all rules from toolbar button? Outlook VBA and Custom Forms 3
oliv- How to Run a Script IN AN ADDIN with Outlook's Rules and Alerts Outlook VBA and Custom Forms 2
P Log of Rules that ran Outlook VBA and Custom Forms 3

Similar threads

Back
Top