Re: SVN2331 INFO.E has illlegal characters in it.

new topic     » goto parent     » topic index » view thread      » older message » newer message

You need to update to at least 2277, then build after that. `...` and """...""" are multiline strings:

sequence email_message = ` 

Dear @PERSON_NAME@, 
 
You have an outstanding balance on your phone bill of @BALANCE@. You 
should immediately contact the billing department at 555-3231. 
 
Thank You, 
 
Your Telephone Company` 

 
puts(1, email_message) 

"""...""" does the same thing except a different syntax. This is incase you need to use """ or ` intermixed. Also, note, that these strings do not have escape characters. This is because all of the characters are type verbatim, so if you need a TAB, then you hit TAB in the middle of the string.

Jeremy

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu