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

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
>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
[quoted text clipped - 8 lines]
> Thank You,
> David Conner