Yes, you have to write code. At its simplest, you're looking at code like
this:
Function Item_Send()
strBody = "Mileage: " & Item.Mileage & vbCrLf & _
"Custom field: " & Item.UserProperties("Custom Field")
Item.Body = strBody
End Function
But this isn't really a good solution for OUtlook 2000, because setting Body
in that version converts the message to rich-text format. Section 20.5.1 in
the book has a detailed example that creates an HTML-format message, which
is what you'll probably want to use. (The alternative is to use CDO, another
programming library, but if you're a complete newbie, you'll probably want
to build an all-Outlook solution first.)

Signature
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> Thanks for your input but I am a complete newbie although I am working
> my way through your book (jumpstart for administrators.)
[quoted text clipped - 21 lines]
>> >
>> > Any ideas on how to do this?