cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

SMTP setup

Ken_K
Level I

Is it possible to setup a SMTP server to send email through SMTP relay using JSL?   See some options on SAS but not sure how to setup using JSL.  Thank you

21 REPLIES 21
jthi
Super User


Re: SMTP setup

In my opinion this type of issues are generally easier to debug within windows commandline or powershell as those are generally issues there, not in JMP (sometimes there are though issues with quoting in JMP).

-Jarmo
hcarr01
Level VI

Re: SMTP setup

Good morning,

 

Is it possible using your method to modify the body of the email (in -Body)?

For example, being able to write an email with line breaks and spaces?

 

Example of the email:

 

Good morning,

 

Here is the information you will receive:

- info1

- info2

 

THANKS

 

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

jthi
Super User


Re: SMTP setup

Have you tried if it works? If I remember it should but you might have to build the body according to Powershell rules (for example https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_ru... ).

 

When I wrote functions to send email in JMP using Send-MailMessage, I did find using -BodyAsHtml easier than just -Body.

-Jarmo
hcarr01
Level VI

Re: SMTP setup

Thank you for your answers !

 

Can you show an example please?

I already tried something like this

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

jthi
Super User


Re: SMTP setup

Names Default To Here( 1 );

str = "\[$body = '

Attached to this email
You will find Instructions

'
Write-Output $body
]\";

RP = Run Program(
	Executable("powershell.exe"),
	Options({str}),
	ReadFunction("text")
);
-Jarmo
hcarr01
Level VI

Re: SMTP setup

Is it possible to add it to the script below please?

In the “orders” section?

 

Names Default To Here( 1 );

commands = {
 "Send-MailMessage -From 'email@address' -To 'email@address' -Subject 'Test mail' -Body 'Message goes here' -SmtpServer smtp.server.com\!n", 
 "exit\!n"
};

icommand = 0;

RP = Run Program(
 Executable( "PowerShell.exe" ),
 ReadFunction( Function( {this}, Write( this << Read ) ) ),
 WriteFunction(
  Function( {this},
   icommand++;
   If( icommand <= N Items( commands ),
    this << Write( commands[icommand] );
   ,
    this << WriteEOF;
   );
  )
 )
);

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

jthi
Super User


Re: SMTP setup

Names Default To Here( 1 );

str = "\[$body = '

Attached to this email
You will find Instructions

'
Send-MailMessage -From 'email@address' -To 'email@address' -Subject 'Test mail' -Body $body -SmtpServer smtp.server.com
]\";


RP = Run Program(
	Executable("powershell.exe"),
	Options({str}),
	ReadFunction("text")
);
-Jarmo
hcarr01
Level VI

Re: SMTP setup

Great, thank you for your response!

 

Likewise, is it possible to add special characters to the body of the email?

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .

jthi
Super User


Re: SMTP setup

Send-Mailmessage has -Encoding parameter Send-MailMessage (Microsoft.PowerShell.Utility) - PowerShell | Microsoft Learn which could work. Or maybe you need those here-strings or convert to html and manage them there.

 

Edit:

Names Default To Here( 1 );

str = "\[$body = @'
Use a quotation mark, like ' or ", to begin a string.
!\!"#$%&'()*+,-./:;<=>?@[\]^`{|}~‒–—―‘’‚‛“”„‟…
'@
Write-Output $body
]\";

RP = Run Program(
	Executable("powershell.exe"),
	Options({str}),
	ReadFunction("text")
);
-Jarmo
hcarr01
Level VI

Re: SMTP setup

Thank you for your reply.

When talking about special characters, I was talking in particular about the “é” or “à” accents.

This post originally written in French and has been translated for your convenience. When you reply, it will also be translated back to French .