Les Landau, a reader from Australia, wants to use Outlook VBA to change the reply address for an outgoing message. Of course, in the Microsoft Outlook user interface (UI), which Figure 1 shows, he can change the reply address on a message's Options dialog box by typing the new address into the Have replies sent to: fieldbut that is a lot of clicking and typing. In this installment of Outlook VBA on Demand, I show you how to change the current message's reply address by adding a macro to an Outlook toolbar button. I also provide some useful techniques for getting input from a user and working with recipients.
Listings 1 and 2 present two versions of the necessary core code. Listing 1 provides a user option through which you specify the reply address you want to use, whereas Listing 2 calls a functionListing 3's GetReplyAddress()that prompts the user to enter an address (or the name of a Microsoft Exchange Server mailbox) every time. You might run Listing 1's ChangeReplyAddrNoPrompt procedure for the reply address that you use most frequently, and you might use Listing 2's ChangeReplyAddrWithPrompt procedure to specify a less commonly used reply address. Both Listing 1 and Listing 2 pass the current message and the reply address as arguments to AddReplyRecip, which is the procedure you see in Listing 4, page 158. AddReplyRecip updates the message with the new reply address.
The Outlook message property that contains a custom reply address is the ReplyRecipients property. If you press F2 in the Outlook VBA window to look up ReplyRecipients in the Object Browser, which Figure 2, page 158, shows, you might be discouraged that the item appears as "read-only," and you might incorrectly assume that you can't modify the reply address. However, remember that ReplyRecipients is a collectiona group of similar objects. You can't directly modify the ReplyRecipients collection (which is why Object Browser lists it as read-only), but you can use the collection's methods to modify the collection. Virtually every collection in Outlook lets you use the Add method to add a new item. In Listing 4, for example, you add a new recipient to the ReplyRecipients collection by providing the Add method with the name or address as an argument:
Set objReplyRecip = _
colReplyRecips.Add(strName)
To ensure that this reply recipient has a valid address, Listing 4 uses the Resolve method to try to resolve the address for the objReplyRecip Recipient object. (This action is the rough equivalent of clicking Check Names in the UI.) If the address doesn't resolve, the procedure uses the Delete method to delete objReplyRecip and gives you the opportunity to try again.
An important component of many programs is getting information from a user. Listing 3 shows one of the simplest techniques to do so, the InputBox() function, which uses the following syntax:
InputBox() returns a text string. The only required argument is the prompt. You can omit the title and the default text. Here are a few tips for using InputBox:
Build the prompt argument as a separate string variable. Doing so will make your program easier to debug.
When you want to put text in quotation marks, use the Quote() function. You'll find the Quote() function in Listing 5.
The prompt can include as many as 1000 characters. To make long prompts easier to read, use vbCrLf & vbCrLf to insert a blank line, and divide the prompt into paragraphs. (The vbCrLf constant built into VBA represents a carriage return and line feed.)
Test the string that the InputBox() function returns to determine whether the string is empty. The user might have clicked OK in the dialog box that InputBox() presents without typing in anything.
You can also use the MsgBox() function to get user input. Other procedures use MsgBox() simply to display a message to a user. When you use MsgBox() as a function in your code, you can specify the buttons it displays. MsgBox() returns an integer that tells you which button a user clicked. The basic syntax is
intRes = MsgBox(<prompt>, _
<buttons>, _
<title>)
As with InputBox(), the prompt is the only argument that the MsgBox() function requires. For the buttons argument, you can combine built-in Visual Basic (VB) constants. The MsgBox() example that you see in Listing 4 puts the Yes and No buttons on the message box, adds a question mark icon, and sets No as the default.
You now have two more useful Outlook VBA macros to add to your collection. You also know how to use the Add method on a Recipients collection to add a new address and the Delete method on an individual Recipient to remove it from its parent collection. Finally, you've seen how to use the InputBox() and MsgBox() functions to get simple responses from a user.
Reader Comments
Great, this solves the overall issue of maintaining a chosen level of discretion when replying to messages directed to alias accounts such jobs@... or info@... Yet, why can't we have a default reply address by mailbox - not by profile? This makes much more sense than having to select an identity each time I create or reply to a message. Really, this should be an 'enhancement' by the Outlook development team... Great solution though - leave it to Sue to come up with the work-around. Good job.
JonR -October 05, 2000
Actually, you do have a default reply address for each mailbox, set by the administrator. If you want to see enhancements to the way Outlook handles this, you can send a suggestion to mswish@microsoft.com. They really do read them all!
Sue Mosher -March 26, 2001
Tried your code for the "Changing the reply address". No go! The "Set objItem = objApp.ActiveInspector.CurrentItem" produces the Not SET error. I would like to do this but your code leaves me frustrated and searching more.
Mark -March 02, 2002
To Mark and other readers,
The code won’t work if the user has set Word as the Outlook editor, because WordMail in Outlook 2000 doesn’t expose an Inspector object. However, the code should work fine if you're using the built-in Outlook editor.
Cheers,
Sue
Sue Mosher -March 12, 2002
Thanks Sue - works a treat. This code just makes setting to a constant easier without multiple subs etc. Mind you use only once per message.
Sub ChangeReplyAddrNoPrompt()
Dim objApp As Application
Dim objItem As MailItem
Dim colReplyRecips As Recipients
Dim objReplyRecip As Recipient
Dim strRecipName As String
Set objApp = CreateObject("Outlook.Application")
Set objItem = objApp.ActiveInspector.CurrentItem
' ### USER OPTION - specify reply address ###
strRecipName = "bous@nowhere.man"
If objItem.Class = olMail And _
objItem.Sent = False Then
Set colReplyRecips = objMsg.ReplyRecipients
Set objReplyRecip = colReplyRecips.Add(strRecipName)
objReplyRecip.Resolve
End If
Set objItem = Nothing
Set objApp = Nothing
End Sub
Paul -May 02, 2004
Is there a way that I can use a similar process to premanently set the reply to address without user interaction? Or maybe so that they are asked only once when the initially start Outlook?
Gerry -May 27, 2004
Is there any way to change the reply to address depending on what mailbox you are replying from. Eg. If I reply to an e-mail in my Inbox then the reply to is me, if I reply to an e-mail in a delegates mailbox, then the reply to is from the delegate.
Dan -June 03, 2004
Gerry, the reply address for an account is set in the registry entries for that account or by the Exchange administrator. It's not accessible from Outlook objects.
Sue_Mosher -August 19, 2004
Dan, what you might do is have a macros that you use only to reply to items in the other mailbox. That macro would set a different reply address.
Sue_Mosher -August 19, 2004
Replying to tricky amazon emails is covered here:
http://www.321books.co.uk/ebooks/outlook-vba-tutorial.htm
mal4mac -September 17, 2004
Hello,
Can I display the text on the inputbox like a p***word ?
Julio.
Anonymous User -February 01, 2005
Do you need all 4 lists if there is a fixed reply email address?
Anonymous User -April 01, 2005
It hade bean nice if you tell how to put your code in to outlook.
Anonymous User -April 07, 2005
Fantastic Code. You pull through yet again, Sue.
My only problem is that I get a security popup, it mentions something like a macro trying to access email addresses. I will try to find a way around this. In the meantime, if anyone else knows how to fix I would greatly appreciate the advice (I tried creating a certificate).
To the last anonymous poster; It hade bean nice if you learn to speel.
Free CDs Offer Fundamental Content for IT Pros Are you up to speed on the latest technologies and solutions? Don't miss out on your chance to get up to speed quickly on fundamental, in-depth information on some of the hottest topics in our library of content.
Let Your Users Reset Their Own Passwords: Free Download Try a 30 day free trial of Desktop Authority Password Self-Service – it provides an easy-to-use, robust system for allowing users to reset their own forgotten passwords or locked accounts.
Get Windows IT Pro & Mark Minasi’s Favorite Power Tools Guide Order Windows IT Pro now and get "More of Mark Minasi's Favorite Power Tools"--a in-depth guide to the most useful Windows commands --FREE with your paid order! Subscribe today, and save 58% off the cover price!
Deep Dive into VMware vSphere, eLearning Series Join John Savill to explore the major functionality capabilities of the vSphere virtualization platform, including identification of the changes from ESX 3.5.