![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hi, with the help of searching this forum (thanks, this place is amazing!) I
figured out a script that would forward a specified email when a rule finds emails that meet certain criteria. It works really well, but I still have two questions. 1) I am not sure I've saved the script in an appropriate location. I really like this script and imagine I will be able to use variants of it for a number of situations, so I want to be sure I'm saving it appropriately to do so. The location I picked was based on a post, but it may have just been telling a person where to save a script to test it temporarily? In the Visual Basic editor, I have the Projects explorer window open, which gave me a folder called Microsoft Office Outlook Objects. In this folder is something called ThisOutlookSession. If I click this, a VB window is opened, and I have my code in there. I am hoping if I put in another similar sub into the same window, I will then be able to pick it to be used in another rule. 2) the script works great, except that it would be even better if it retained the body of the email that fired the rule. This code produces an email that retains just the subject line, but the body of the email is blank except for my new text. Code is below. Thanks in advance for any help! Sub RunAScriptRuleRoutine(MyMail As MailItem) Dim strID As String Dim olNS As Outlook.NameSpace Dim msg As Outlook.MailItem Dim fwd As Outlook.MailItem strID = MyMail.EntryID Set olNS = Application.GetNamespace("MAPI") Set msg = olNS.GetItemFromID(strID) Set fwd = msg.Forward With fwd .To = " .Subject = fwd.Subject & " -- MY TEXT HERE" .HTMLBody = "Here is my email message." .Send End With Set msg = Nothing Set olNS = Nothing End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Outlk 2k3 Script: Saving Excel File programticaly from OUTLOOK SCRIPT | news.microsoft.com | Outlook and VBA | 3 | November 22nd 06 04:33 PM |
outlook 2k3 Script: how to Save Mail body to txt file | news.microsoft.com | Outlook and VBA | 5 | November 7th 06 03:23 PM |
Outlook 2003 Script: Pb body format | news.microsoft.com | Outlook and VBA | 5 | October 30th 06 08:05 PM |
How to change the deliver location to PST with script ? | Barres_Brazil_SP | Outlook and VBA | 0 | February 4th 06 08:39 PM |
Script to search Outlook message body | aptrsn1 | Outlook and VBA | 1 | January 27th 06 04:42 PM |