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

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
 
H

Hollis D. Paul

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
 
S

Sue Mosher [MVP-Outlook]

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
 

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