outlook macro change item.to recipient address to another while sending a message

Joined
Dec 1, 2014
Messages
2
Reaction score
0
I want to change recipient's email address when sending a message. I don't know if I should work with item.to or rec.addressentry or myrecipient.

When I enter specific address I want it to either rewrite after send or just reroute it to another address but never to the specific address. So I prohibit (e-mail address removed) and send it to (e-mail address removed).

Codes below either do not work or can't press send button or it jumps to outbox.


I tried these codes:

'Item = MailItem If Item.To = "(e-mail address removed)" Then Item.To = "(e-mail address removed)"

This not working too:

If InStr(1, Rec.AddressEntry, "(e-mail address removed)", vbTextCompare) Then newEm = "(e-mail address removed)" End If Set myRecipient = myItem.Recipients.Add(newEm) myRecipient.Type = Rec.Type

this one too does not work:


Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean) Item.To = ChangeSMTPRecipient(Item, "(e-mail address removed)", "(e-mail address removed)") End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top