cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Arkawa
Level III

Build an e-mail using JMP

Hi all,

 

I would like to know if it is feasable to insert a picture of a graph for example inside the body of an e-mail using JSL ? Additionaly, I would like to confirm the sending of my e-mail, is it possible to use a message box with a condition using JSL ?

 

Up to date I have a script like the following : 

 

Mail(Recipients[i],"Object",
"body",

{"path1.png",
"path2.png",
"path3.xlsx"}));

 

But my png are attached to the e-mail and not inside the body.

 

Thank you !

 

Best regards

2 REPLIES 2
jthi
Super User

Re: Build an e-mail using JMP

I'm not sure if you can embed the attachments to email body using Mail().

 

There are also other options sending email through JMP, but usually they require using Run Program() (with powershell or vbscript) or python integration.

-Jarmo
Arkawa
Level III

Re: Build an e-mail using JMP

Hi jthi,

 

I finally found another way to manage it (extract pictures and excel files from JMP and add them by vba in a word document that I will send manually).

 

Best regards

Arka