fredley Posted March 15, 2007 Posted March 15, 2007 Using the send email script step it seems you can only get one carriage return at a time, regardless of how many ¶'s you put. Is there a way round this?
Fitch Posted March 15, 2007 Posted March 15, 2007 Using Apple Mail, I can get two carriage returns, e.g. "Hey " & Proper ( $name ) & ",¶¶" You do have to use the paragraph symbols, it won't work just to have carriage returns in your text. So you'd have to parse out your paragraphs from your text field and re-assemble them in your script.
sbg2 Posted March 15, 2007 Posted March 15, 2007 This doesn't work for me using WinXP, MS Outlook and FMP v7. I can only seem to get a maximum of 1 line return.
Fitch Posted March 16, 2007 Posted March 16, 2007 Not tested, but as a workaround perhaps you could use: Substitute("¶¶" ; "¶ ¶") // note the space
sbg2 Posted March 16, 2007 Posted March 16, 2007 Wow, that was a stupid mistake on my part. Sorry, for some reason my brain froze on that one. Using the calc - "Hey " & Proper ( $name ) & ",¶¶" & "I think my brain froze." - I somehow expected to see: Line1 = Hey Mr. So-n-so, Line2 = Return Line3 = Return Line4 = I think my brain froze. But of course 3 consecutive ¶'s would be required for that to happen (which works for me). I really must need the vacation I'm about to take. Back to the OP's question.... What email client and version are you using?
Recommended Posts
This topic is 6464 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now