Form Email Button Spacing

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

Guest

Hello,

I believe I have worked out the kinks in my button to display in a email
things such as "Ticket#, First and Last name etc. My problem now is that I
want it to wrap in the email message. Currently the way the code for the
button works places the information in a line (ex. 1 Tom Gorgo). I want to
make it to be more like:

1
Tom Gorgo

Anyone got any hints how to make this happen?
 
If the email body is text (as opposed to html) then

1) emailbodyname = partoneofmessage & chr(13) & parttwoofmessage



or

2) emailbodyname = partoneofmessage & vbCRlf & parttwoofmessage

I am not sure of the spelling but it is the vb code for
carriage return line feed.


If you are using html body then insert <br> in the body string for
each carriage return you want.

Ron
 
I'm glad the group could help.

Sometimes it is the simplest little things that really really help.

Ron
 
Back
Top