![]() |
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
|
|||
|
|||
![]()
I am trying to insert a block of standard text into a reply message.
Basically when I receive a message I would like to be able to click on reply and then run a macro that will insert a standard block of text. I have found some code that nearly works but instead of replying to the original message it creates a new email to the sender and retains the subject field. It does however insert the standard text. It it possible to retain the original message text somehow ? I am using Outllook 2003 and this is my code Sub InsertText() Dim objApp As Outlook.Application Dim objMsg As Outlook.MailItem On Error Resume Next Set objApp = CreateObject("Outlook.Application") Set objMsg = objApp.ActiveInspector.CurrentItem.Reply With objMsg .BodyFormat = olFormatHTML .HTMLBody = "pStandard text block here/p" End With objMsg.Display Set objMsg = Nothing Set objApp = Nothing End Sub Thanks in advance. Martyn |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Rule to auto reply using a dynamic text file as attachment or message body | DF | Outlook - General Queries | 0 | June 29th 07 07:38 PM |
using signature to insert a standard letter | ppieri | Outlook - General Queries | 5 | May 6th 07 09:19 PM |
Automatically insert the name of the sender in a reply message | [email protected] | Outlook - General Queries | 0 | November 28th 06 05:53 PM |
Reply changes text in email message | pd | Outlook - General Queries | 0 | October 2nd 06 09:01 PM |
insert as text (to insert html into email body) | Iona | Outlook - General Queries | 1 | July 13th 06 01:10 PM |