cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
steven_gong
Level II

How to make
work in mail message?

I quote below from JMP scripting index:
Mail( "[email protected]", "revelation", "JMP is great.", "$SAMPLE_DATA/Big Class.jmp" );

 

It's about mail function.

"JMP is great" is the message part.

 

What I want for message part is like this:

Hi all,

How are you!

 

How to make it work?

How to insert <br/> between "Hi all," and "How are you!"

 

I've tried search the community, didn't find the related discussions.

Thanks for any suggestions.

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to make
work in mail message?

The answer is to use the New Line escape string "\!n".

Mail( "[email protected]", "revelation", "Hi all,\!nHow are you?", "$SAMPLE_DATA/Big Class.jmp" );

Please take the time to read the Scripting Guide.  It will make your JMP scripting efforts easier.

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: How to make
work in mail message?

The answer is to use the New Line escape string "\!n".

Mail( "[email protected]", "revelation", "Hi all,\!nHow are you?", "$SAMPLE_DATA/Big Class.jmp" );

Please take the time to read the Scripting Guide.  It will make your JMP scripting efforts easier.

Jim

Recommended Articles