Auto reply using macro include original email

Status
Not open for further replies.

BNARD

New Member
Outlook version
Outlook 2010 32 bit
Email Account
Exchange Server
need help on auto reply using macro that will include original email please
 
Thank you,
do i enter the code as it shown below, I need help on replying on multiple emails or to setting up a rule which will include script that will have the verbiage created as outlook template and also will have the original at the bottom as normal when you replying an email back, also when i tried to create rule for some reason when click on script to put in the macro
it's not there.
please help.



Sub AutoReplywithTemplate(Item As Outlook.MailItem)
Dim oRespond As Outlook.MailItem



' Use this for a real reply
' Set oRespond = Item.Reply
' This sends a response back using a template
Set oRespond = Application.CreateItemFromTemplate("C:\path\to\template.oft")
With oRespond
.Recipients.Add Item.SenderEmailAddress.Subject = "Your Subject Goes Here".HTMLBody = "Your reply text goes here." & vbCrLf & _
"---- original body below ---" & vbCrLf & _
Item.HTMLBody & vbCrLf & _
"---- Template body below ---" & _
vbCrLf & oRespond.HTMLBody
' includes the original message as an attachment
.Attachments.Add Item
' use this for testing, change to .send once you have it working as desired
.Display
End With
Set oRespond = Nothing
End Sub
 
sorry, tried it again and it work thank you, one more question please how can i use the same subject as the original email when reply.
 
just to clarify using the macro above it works but i need to keep original subject from the original email please help thanks
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
nmanikrishnan Auto-reply from default account Using Outlook 1
R How Do I insert images in and Auto Reply Using Outlook 3
K Extract email address from body and auto-reply outlook Using Outlook 1
ashcosta2 Auto Reply rule based on speficied time Outlook VBA and Custom Forms 0
M VBA Auto-Reply code for Two Mailboxes on one Outlook Session. Outlook VBA and Custom Forms 4
N VBA, Rule that will Auto Reply based on time of day Outlook VBA and Custom Forms 1
T Voting and auto reply Exchange Server Administration 3
S Outlook 2013 - Customized auto-reply message Using Outlook 10
L Auto Reply Signature Using Outlook 5
L Editing auto reply email from a shared mailbox? Exchange Server Administration 7
A Macro in Outlook for auto-reply Using Outlook 3
V Auto reply message after a specific time in a day Using Outlook 1
R Auto-reply with rule on shared mailbox Using Outlook 1
M Auto-reply with macro whether logged in to outlook or not Outlook VBA and Custom Forms 2
R How to auto reply with read-receipt Outlook VBA and Custom Forms 2
R Auto Reply with Original Email and any attachments Outlook VBA and Custom Forms 1
P Email address auto-completes work fine on laptop, but no longer on desktop Using Outlook 2
C New pc, new outlook, is it possible to import auto-complete emailaddress Using Outlook 4
R Outlook 365 VBA AUTO SEND WITH DELAY FOR EACH EMAIL Outlook VBA and Custom Forms 0
Nufc1980 Outlook "Please treat this as private label" auto added to some emails - Help. Using Outlook 3
K vba code to auto download email into a specific folder in local hard disk as and when any new email arrives in Inbox/subfolder Outlook VBA and Custom Forms 0
F Auto changing email subject line in bulk Using Outlook 2
T Outlook 2019 Not Using Auto Compete After Deletion of 365 Using Outlook 1
richardwing Auto forward email that is moves into a specific outlook folder Outlook VBA and Custom Forms 5
D Auto Remove [EXTERNAL] from subject - Issue with Macro Using Outlook 21
A Imap account not auto syncing inbox at startup Using Outlook 0
K Run a script rule to auto 'send again' on undeliverable emails? Outlook VBA and Custom Forms 1
FryW Need help modifying a VBA script for in coming emails to auto set custom reminder time Outlook VBA and Custom Forms 0
S Auto forward for multiple emails Outlook VBA and Custom Forms 0
DDB VBA to Auto Insert Date and Time in the signature Outlook VBA and Custom Forms 2
V Auto-complete stopped working Using Outlook 4
D auto forward base on email address in body email Outlook VBA and Custom Forms 0
M Replyall macro with template and auto insert receptens Outlook VBA and Custom Forms 1
R Auto Forwarding with different "From" Outlook VBA and Custom Forms 0
P auto-complete is hopelessly broken Using Outlook 0
R Auto Assign Category colours to Incoming Emails based on whom the email is addressed Outlook VBA and Custom Forms 3
C Auto Run VBA Code on new email Outlook VBA and Custom Forms 1
S Outlook Macro to send auto acknowledge mail only to new mails received to a specific shared inbox Outlook VBA and Custom Forms 0
V Auto-Submitted: auto-replied in header Using Outlook 0
R Auto display of new email does not work on non-default account Outlook VBA and Custom Forms 0
B Outlook 2016 Auto-archive creates new folder Using Outlook 3
J Edit auto-complete list in Outlook 2016+/365? Using Outlook 0
P Auto assign shared mailbox Outlook VBA and Custom Forms 1
M Outlook 2010 Problem with OutLook 2010 32 bit, after Windows Auto Update Using Outlook 3
P [SOLVED] Auto remove [EXTERNAL] from subject Using Outlook 16
Z Add text to auto-forwarded e-mail Outlook VBA and Custom Forms 4
N Disable Auto Read Receipts sent after using Advanced Find Using Outlook 4
Q Prompt button to auto turn on Out of Office Outlook VBA and Custom Forms 3
P Auto Insert Current Date or Time into Email Subject Outlook VBA and Custom Forms 2
S Messages moved / deleted by auto-archive are not synchronized to exchange Exchange Server Administration 8

Similar threads

Back
Top