• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Macro to Resend Sent Message

Slipstick Systems

› Developer › Code Samples › Macro to Resend Sent Message

Last reviewed on October 18, 2022     24 Comments

Applies to: Outlook (classic)

To resend a sent message, you need to open the message in the Sent Items folder then go to the Move group and choose the Actions, Resend this message... command.

Resend message command

You can save a few steps using a macro. You'll still need to select the message you want to resend, but the macro will do the other steps for you. You can change the subject, add new recipients, or change other fields.

This macro works in Outlook 2013 and above, on the open or selected sent item. The message will briefly display on screen before it's sent, or remove the olResendMsg.Send line to click Send yourself.

Sub ResendSentEmail()
'works in Outlook 2013/2016
  Dim myItem As Outlook.MailItem
  Dim objInsp As Outlook.Inspector
  Dim objActionsMenu As Office.CommandBarControl
  Dim olResendMsg As Outlook.MailItem

  ' get current item & open if needed
  On Error Resume Next

  Select Case TypeName(Application.ActiveWindow)
    Case "Explorer"
   Set myItem = Application.ActiveExplorer.Selection.Item(1)
   myItem.Display
    Case "Inspector"
      Set myItem = Application.ActiveInspector.CurrentItem
    Case Else
  End Select
  On Error GoTo 0
  
  If myItem Is Nothing Then
    MsgBox "Could not use current item. Please select or open a single email.", _
       vbInformation
    GoTo exitproc
  End If
    
 ' run the resend command
    Set objInsp = myItem.GetInspector
    objInsp.CommandBars.ExecuteMso ("ResendThisMessage")
    
' get the opened compose message form & send it
' delete these lines if you don't need to auto-edit or to auto-send it
Set olResendMsg = Application.ActiveInspector.CurrentItem

' update fields if needed
olResendMsg.Subject = myItem.Subject & " (resend)"
olResendMsg.Send

  ' close orig email
  myItem.Close olDiscard

exitproc:
Set myItem = Nothing
Set objInsp = Nothing
Set objActionsMenu = Nothing
Set olResendMsg = Nothing
End Sub

 

Resend Selected Messages

This macro runs on selected messages in the Sent Items folder and resends all. I merged this macro with the macro at Work with Selected items in any folder.

Sub ResendSelectedEmail()
'works in Outlook 2013/2016
  Dim objOL As Outlook.Application
  Dim currentExplorer As Explorer
  Dim Selection As Selection
  Dim myItem As Outlook.MailItem
  Dim objInsp As Outlook.Inspector
  Dim objActionsMenu As Office.CommandBarControl
  Dim olResendMsg As Outlook.MailItem

  ' get current item & open if needed
  On Error Resume Next

    Set objOL = Outlook.Application
    Set currentExplorer = objOL.ActiveExplorer
    Set Selection = currentExplorer.Selection

For Each myItem In Selection
     myItem.Display
 ' run the resend command
    Set objInsp = myItem.GetInspector
    objInsp.CommandBars.ExecuteMso ("ResendThisMessage")
    
' get the opened compose message form & send it
' delete these lines if you don't need to auto-edit or to auto-send it
Set olResendMsg = Application.ActiveInspector.CurrentItem

' update fields if needed
olResendMsg.Subject = myItem.Subject & " (resend) " & Date
olResendMsg.Send

  ' close orig email
  myItem.Close olDiscard

Next
exitproc:
Set myItem = Nothing
Set objInsp = Nothing
Set objActionsMenu = Nothing
Set olResendMsg = Nothing
End Sub

How to use macros

First: You will need macro security set to low during testing.

To check your macro security in Outlook 2010 or 2013, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, it’s at Tools, Macro Security.

After you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

Open the VBA Editor by pressing Alt+F11 on your keyboard.

To put the code in a module:

  1. Right click on Project1 and choose Insert > Module
  2. Copy and paste the macro into the new module.

More information as well as screenshots are at How to use the VBA Editor

Macro to Resend Sent Message was last modified: October 18th, 2022 by Diane Poremsky
Post Views: 61

Related Posts:

  • Delete attachments from messages
  • Create an Outlook Appointment from a Message
  • Categorize Contacts with bad addresses
  • Remove Email Signature from Message using VBA

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Rafe says

    November 7, 2022 at 5:06 am

    Many thanks.
    It is a great help for me.
    I send daily few reports to the same recipients with same subject but with different text. So, your macro save many time for me.

    Reply
  2. Tolga says

    November 1, 2022 at 9:38 am

    Diane, thanks a lot for the macro. It really helped me write my macro.
    One bit of question: I use olResendmsg.Close (olSave) but it is not saved in Drafts. Outlook sends the email immediately.
    Is this specific to "ResendThisMessage" execution, or is there a point I need to consider?
    Many thanks!

    Reply
    • Diane Poremsky says

      November 1, 2022 at 10:40 pm

      You want to save a copy as a draft? When you send, that removes the draft copy -
      This saves a draft - because I'm not sending.
      olResendMsg.Close (olSave)
      'olResendMsg.Send

      Reply
  3. Jason says

    September 13, 2022 at 2:36 pm

    Does this still work in Microsoft Office 365?

    Reply
    • Diane Poremsky says

      September 13, 2022 at 2:44 pm

      Yes, it works in all current versions of outlook.

      Reply
      • Jason says

        October 3, 2022 at 6:10 pm

        It looks like this will remove the re-sent e-mail from the ‘Sent’ folder? How do you prevent that?

      • Diane Poremsky says

        October 3, 2022 at 10:57 pm

        It shouldn't remove the one already in the sent folder - buit will add the reset copy. The .close oldiscard line refers to save changes when you close a message.

      • Jason says

        October 14, 2022 at 6:38 pm

        Got it, thanks Diane! Is there a way so we can select multiple emails to resend at one click of the macro button? Currently I can only resend one at a time. If I select multiple emails and try resending, only one will go through.

      • Diane Poremsky says

        October 18, 2022 at 8:48 am

        The updated macro for multiple messages is at https://www.slipstick.com/developer/code-samples/macro-resend-message/#selected.

      • Jason says

        October 17, 2022 at 7:34 pm

        Hi Diane! Is there a way to select multiple emails to resend? It seems like we can only select one email to resend at a time. Thank you!

      • Diane Poremsky says

        October 17, 2022 at 10:51 pm

        `As written, it is for one at a time, but could be tweaked to do multiples.

  4. eric says

    April 29, 2021 at 11:41 pm

    I have an odd problem in Outlook 2019: if I click resend this message on a message opened from an archive pst file and I edit the subject and body, the email will go out with only the subject edited, but the body remains unchanged. this only happens if the message came from an archive, if I pull from my main outlook file resend works fine and I can edit both the subject and body. The only workaround is to open the message, edit it, save it as a draft and then send it, otherwise the body changes will not be retained.

    Reply
    • Diane Poremsky says

      April 29, 2021 at 11:45 pm

      Is this an exchange account or IMAP? I've seen this behavior with both, but not for a long time and not in current versions.

      If you edit the body first, does it make a difference?

      Reply
      • eric says

        April 30, 2021 at 11:44 am

        No its POP3
        No it doesnt make any difference if i edit body first.
        Thank you.

      • eric m says

        August 26, 2021 at 6:14 pm

        no its a POP account. editing the body first doesnt make any difference. I got a new pc and installed outlook 2019 again and it didnt do it at first, now its doing it again on the new pc as well.

      • eric m says

        August 30, 2021 at 9:02 pm

        I found that the problem disappeared when I made sure that there was an email address entered in the "Reply Email" address box under the account settings for each email account that was setup. Not sure why having this address in the box would matter but in this case it did.

  5. Chris says

    July 13, 2020 at 1:20 pm

    Heey Diane,

    I would deeply appreciate if you can help me with it.

    The idea is a macro that resend the first correo (on the same correo, not making a new one) making a reminder to the distinataries of that correo with a predefined message like "we remind you.."
    I would like this to work for multiple emails with different characteristics but the reminder or message will eventually be forwarded.

    You would help me a lot. Please.

    Thanks.

    Reply
  6. G M says

    August 2, 2019 at 12:18 pm

    Thank you! This works perfectly and is exactly what I was looking for.

    Reply
  7. Matthias says

    September 5, 2017 at 4:03 am

    Works fine for me, Thank you!

    I removed "olResendMsg.Send" to check / edit the mail before sending it.

    Reply
  8. Celeste Hill says

    March 8, 2017 at 10:25 am

    Is it normal that after the resend is done, it destroys the original message? How would you modify this to keep the original message in tact and just close it?

    One more question - I'd like to do this macro on a series of messages saved within one folder in my sent items. What can I add to this to, once it's done with one message, to move down to the next item in the folder, and run it again until it's all done with every message in the folder?

    TIA!

    Reply
    • Diane Poremsky says

      March 9, 2017 at 1:16 am

      How it is destroying it? It shouldn't affect the original at all - all it does is run the command to resend. if you don't want it closed, remove this line - myItem.Close olDiscard - that will leave the open message on screen.

      To run it on all messages, you need to put it together with this one - https://www.slipstick.com/developer/code-samples/working-items-folder-selected-items/ - you'll put this is the ' do whatever section (you'll also need the dim'sat the top).
      Dim objInsp As Outlook.Inspector
      Dim objActionsMenu As Office.CommandBarControl
      Dim olResendMsg As Outlook.MailItem

      obj.Display
      Set objInsp = obj.GetInspector
      objInsp.CommandBars.ExecuteMso ("ResendThisMessage")
      Set olResendMsg = Application.ActiveInspector.CurrentItem
      olResendMsg.Subject = obj.Subject & " (resend)"
      olResendMsg.Send
      obj.Close olDiscard

      Reply
      • Robert says

        October 30, 2019 at 6:43 am

        Hello,

        You merged these to work with all items in a folder, what would need to be added to resend all selected items in a folder instead?

  9. Vishal says

    August 11, 2016 at 1:00 pm

    Hi Diane,

    I need your help in terms of creating a macro which would duplicate a active new email with its contents + attachment into another new email. The ideas is to same email to multiple recipients but not using bcc option.

    I would deeply appreciate if you can help me with it.

    Thanks & Regards,
    Vishal

    Reply
    • Diane Poremsky says

      August 15, 2016 at 1:29 am

      Non-macro method: save to drafts, ctrl+C, V to copy and paste or click Forward to send a copy of the draft.

      Another option is to use a macro to do a mail merge only in outlook- https://www.slipstick.com/developer/merge-email-without-using-word/ - it uses a template but it will work with the open message. It works on a single contact but that could be changed to use selected contacts.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 5

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Jetpack plugin with Stats module needs to be enabled.
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.