How to add sender name to cc for Custom Message form in Outlook

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

Guest

I am creating a new custom Message form for Production Service Request. I
want to automatically insert the sender name in the CC-Carbon Copy area of
the form. How do you do this?

Is their a global variable you insert?

Do you have to create a script to insert the sender name?

Please Advise.

Thank You,
David Conner
 
I am creating a new custom Message form for Production Service Request. I
want to automatically insert the sender name in the CC-Carbon Copy area of
the form. How do you do this?
Just type the senders email into the cc field before you go into design mode.

Hollis D. Paul [MVP - Outlook]
Mukilteo, WA USA
 
If this is for group use, not your own personal use, then yes, you'll need a script. Something like:

Function Item_Open()
If Item.Size = 0 Then
Item.Cc = Application.Session.CurrentUser
End If
End Function

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top