It took me a long while to figure this out, but it is very simple.
use the Item_Send() function and set the "Body" variable to whatever
test you want.
See my example below:
The fist line removes all text from the body
The rest of the lines appends the value of the variables from the fields
from the compose page, to the body of the message field.
Try it, you'll like it!
Function Item_Send()
Body = ""
Body = Body & "RFC #"&
UserProperties.Find("InsertFieldNameHere").Value & vbcr
Body = Body & "RFC #"&
UserProperties.Find("InsertFieldNameHere").Value & vbcr
End Function
*** Sent via Developersdex
http://www.developersdex.com ***