creating an email form

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

Guest

I would like to create an Outlook form that emails it's results into the
message field of the recipient.

Client would open the form off of a corporate intranet, fill out the fields,
possibly add an attachment and send the results off to someone with the
results nicely displayed into an email message. The recipient needs to cut
and paste it into another software.

Thanks in advance.
 
Might there by an example of a form that submits say a person's name into an
email recipient's message body. I would appreciate the code example if
that's possible.
 
Depending on what exactly you have in mind, start from this:

strName = <code to get "a person's name">
Item.Body = strName & vbCrLf & Item.Body

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

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