View Single Post
 
Old 12-10-2021, 10:56 PM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

If you open the message. 'Resend' is on the Message Tab of the ribbon.
Alternatively you could use a macro to resent the message - see the code at Macro to Resend Sent Message - however you will need to change the lines
Code:
' update fields if needed
    olResendMsg.Subject = myItem.Subject & " (resend)"
    olResendMsg.Send
to
Code:
' update fields if needed
    olResendMsg.Display
to achieve the functionality you require.
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote