Hello All
Sorry this is my first question on this board. i commented on another question but thought it better to ask here instead.
scenario:
i know little or nothing about VB script :(
but i have been looking for this solution for a while :)
Message auto-numbering in Outlook
i am using Microsoft outlook 2010 on windows 7.
could you tell me what i need to do to implement this code or guide me to literature that would help??
i want to auto reply to every email sent to a specific email account with a some default text plus a consecutive number in the subject and some default text and the same number in the message.
any help would be much appreciated.
thanks in advance
I want to create a rule which applies to all mail received through the specified account, then run a script. I found the below code elsewhere in the forum, which is on the way to my solution, in that this would create the reply with my subject & text. So i just need to include the auto numbering now with your help.
thanks//Ot_Gu
Sub AutoReply(Item As Outlook.MailItem)
Dim olkReply As Outlook.MailItem
Set olkReply = Item.Reply
With olkReply
'Change the subject on the next line as desired'
.Subject = Item.Subject
'Change the body as desired'
.HTMLBody = "Your reply text goes here.<bt><br>" & olkReply.HTMLBody
.Send
End With
Set olkReply = Nothing
End Sub