Message pops when replying to a specific e-mail address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I would like to create a script that pops a message box telling the user not
to reply and if possible disabling the reply button in Outlook.
This is where I'm at so far. I'm getting stuck on the on the If statement
for the email address.
This is what I got:
Function Item_Reply()
Dim strReply
strReply = "Please DO NOT REPLY to this e-mail. Thank You."
If ????? = "(e-mail address removed)" then
msgbox strReply, vbOKOnly, "No Reply"
End if
End Function

Am I on the right track?
I cannot get the From: field where the ?????
Much help is appreciated.
Thank you.
 
Back
Top