Email a form

B

Bill

I've searched through this posting and can't really find what I need. I have
a form containing a lot of information. I want to send this form via email
(no attachment) to various people. I'm using SendObject. This is what I
have:

Object Type
Object Name
Output Format
To (e-mail address removed)
CC (e-mail address removed)
Subject ="Our Goal - ID: " & [ID]
Message ="Explanation: " & [Comment] & ": Resolution:
" & [Resolution1] & "Action Taken: " & [Action Taken1]
Edit Message yes
Template File

-----
The form sends but looks really REALLY bad. Its all run together and hard to
read. I'd like to format the email so that it's laid out nicely and is easy
to read. I think I want to use a template but I can not figure out how.

Thanks for the help.
 
S

Steve Schapel

Bill,

It may help for a start to simply put in some carriage returns and line
feeds, something like this...

Message:
="Explanation:" & Chr(13 & Chr(10) & [Comment] & Chr(13) & Chr(10) &
Chr(13) & Chr(10) & "Resolution:" & Chr(13) & Chr(10) & [Resolution1] &
Chr(13) & Chr(10) & Chr(13) & Chr(10) & "Action Taken:" & Chr(13) &
Chr(10) & [Action Taken1]
 

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