Trying to use JSL to send out an email with a data table and some graphs.
Currently using JMP 14 and GMAIL account which are both (64 bit).
When I use this piece of script: Mail( "test@example.com", "revelation", "JMP is great.", "$Sampled/Big Class.JMP" );
I get the following error in the logs:
Send mail failed. mail problem in access or evaluation of 'Mail' , Mail/*###*/("testable.com", "revelation", "JMP is great.", "$Sampled/Big Class.JMP"),
Can somebody help or had a similar issue?
Hi Mark,
is it possible to script to select "Allow" without human interaction?
Ivan,
I had a similar issue a few years ago. Here is how I got around it.
MailToString = "mailto:" || emailAddress;
Web( MailToString );
Hi John,
Thanks for this I had tried this also.
Just I was trying to Script in order to send out e-mails automatically , web mail function I believe you still have to press the send button.
Also would like to add attachments which cannot be done in the web mail function, I believe.
Tomorrow I am going to install "Outlook" to link up my g-mail account then try the mail () function.
Let you know how I get on.