formatting an email
Posted: Tue Oct 14, 2008 11:25 pm
I'm trying to set up an email order confirmation and I want to put various bits of text on different lines. I can get the email bit to work and I thought Linefeed would allow me to place what I wanted on each line. Code attached and suggestions welcome
Code: Select all
on mouseUp
revmail fld "Memail",, "Confirmation of Order", "Dear " & fld "Mcontact" & ","
linefeed
"Thank you for your order No" && fld "CustOrderNo" & " which has now been processed."
linefeed
"Expected delivery is " & fld "dateReqd"
end mouseUp