<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SMTP setup in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677702#M86402</link>
    <description>&lt;P&gt;Bonjour,&lt;BR /&gt;Comment je peux faire pour rajouter une pièce-jointe dans le mail svp ?&lt;/P&gt;</description>
    <pubDate>Thu, 14 Sep 2023 09:36:31 GMT</pubDate>
    <dc:creator>hcarr01</dc:creator>
    <dc:date>2023-09-14T09:36:31Z</dc:date>
    <item>
      <title>SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/343614#M59318</link>
      <description>&lt;P&gt;Is it possible to setup a SMTP server to send email through SMTP relay using JSL?&amp;nbsp;&amp;nbsp; See some options on SAS but not sure how to setup using JSL.&amp;nbsp; Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 07:29:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/343614#M59318</guid>
      <dc:creator>Ken_K</dc:creator>
      <dc:date>2020-12-22T07:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/343820#M59321</link>
      <description>&lt;P&gt;Take a look at the 'Mail()' &lt;A href="https://www.jmp.com/support/help/en/15.1/#page/jmp/utility-functions.shtml?os=mac&amp;amp;source=application&amp;amp;utm_source=helpmenu&amp;amp;utm_medium=application#ww3348011" target="_self"&gt;command&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 15:41:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/343820#M59321</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2020-12-22T15:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/343966#M59348</link>
      <description>&lt;P&gt;Thank you for the reply.&amp;nbsp;&amp;nbsp; When I use Mail() function the email is sent through outlook client which blocks automatic email sending for me.&amp;nbsp;&amp;nbsp; I'm trying to use SMTP routing to avoid using outlook client.&amp;nbsp;&amp;nbsp; Is there a way to configure mail() function to use SMTP routing instead of Outlook client?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 22:31:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/343966#M59348</guid>
      <dc:creator>Ken_K</dc:creator>
      <dc:date>2020-12-22T22:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/344008#M59360</link>
      <description>&lt;P&gt;Understood. Maybe there is some help in &lt;A href="https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-up-an-SMTP-interface-on-JMP-or-alternative/td-p/17304" target="_self"&gt;this earlier thread&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 14:02:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/344008#M59360</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2020-12-23T14:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/344010#M59361</link>
      <description>&lt;P&gt;If you are on windows here an option using powershell:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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 &amp;lt;&amp;lt; Read ) ) ),
	WriteFunction(
		Function( {this},
			icommand++;
			If( icommand &amp;lt;= N Items( commands ),
				this &amp;lt;&amp;lt; Write( commands[icommand] );
			,
				this &amp;lt;&amp;lt; WriteEOF;
			);
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Info about the powershell utility:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.1" target="_blank"&gt;https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that this requires powershell version 2:&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-the-windows-powershell-2.0-engine?view=powershell-7.1" target="_blank"&gt;https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/starting-the-windows-powershell-2.0-engine?view=powershell-7.1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 14:41:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/344010#M59361</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2020-12-23T14:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677702#M86402</link>
      <description>&lt;P&gt;Bonjour,&lt;BR /&gt;Comment je peux faire pour rajouter une pièce-jointe dans le mail svp ?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 09:36:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677702#M86402</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2023-09-14T09:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677707#M86403</link>
      <description>&lt;P&gt;You can with most likely with all the different methods. For PowerShell (which I most of the time use) see the Microsoft documentation.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 09:56:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677707#M86403</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-14T09:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677709#M86404</link>
      <description>&lt;P&gt;&lt;FONT&gt;J’ai essayé avec la fonction «&amp;nbsp;-Attachment&amp;nbsp;» en suivant le modèle de ce lien :&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;A href="https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.1" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.1&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;En indiquant le bon chemin d’accès, je ne reçois pas de mail. J&lt;/FONT&gt;&lt;FONT&gt;e dois faire une mauvaise manipulation ou utiliser une mauvaise syntaxe.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;avez-vous un exemple de script faisant appel à une pièce-jointe SVP ?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Sep 2023 11:28:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/677709#M86404</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2023-09-14T11:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/679445#M86556</link>
      <description>&lt;P&gt;I just tried adding this to the end of the string in my example above and it worked:&lt;/P&gt;
&lt;PRE&gt; -Attachments 'C:/file.txt'&lt;/PRE&gt;
&lt;P&gt;The complete example would be:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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 -Attachments 'C:/file.txt'\!n", 
	"exit\!n"
};

icommand = 0;

RP = Run Program(
	Executable( "PowerShell.exe" ),
	ReadFunction( Function( {this}, Write( this &amp;lt;&amp;lt; Read ) ) ),
	WriteFunction(
		Function( {this},
			icommand++;
			If( icommand &amp;lt;= N Items( commands ),
				this &amp;lt;&amp;lt; Write( commands[icommand] );
			,
				this &amp;lt;&amp;lt; WriteEOF;
			);
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 Sep 2023 18:34:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/679445#M86556</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2023-09-19T18:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/679653#M86577</link>
      <description>&lt;P&gt;J’ai réussi à le faire fonctionner pour un chemin d’accès sans caractères particulier (Exemple : « è », « é »...)&lt;BR /&gt;Existe-t-il une fonction particulière pour utiliser des caractères spéciaux dans les messages et dans les chemins d’accès ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hcarr01_0-1695217754480.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56789i214B02FE63EAAC90/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hcarr01_0-1695217754480.png" alt="hcarr01_0-1695217754480.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;J’obtiens ce message d’erreur dans le registre&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;J’ai rajouté une ligne pour modifier le type de codage dans le PowerShell mais cela ne permet pas de résoudre le problème :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hcarr01_0-1695375223534.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56908iC36543E621572BC8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hcarr01_0-1695375223534.png" alt="hcarr01_0-1695375223534.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hcarr01_1-1695375255623.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/56909iF362828F4B4C74E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hcarr01_1-1695375255623.png" alt="hcarr01_1-1695375255623.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;J’essaye aussi de sauter des lignes dans le corps de mon mail, j’ai essayé avec différentes méthodes comme «&amp;nbsp;\n&amp;nbsp;»... mais cela ne fonctionne pas.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 09:36:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/679653#M86577</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2023-09-22T09:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/679674#M86581</link>
      <description>&lt;P&gt;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).&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 14:41:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/679674#M86581</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-09-20T14:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714524#M89788</link>
      <description>&lt;P&gt;Bonjour,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Est-il possible en utilisant votre méthode de modifier le corps du mail (dans -Body)?&lt;/P&gt;&lt;P&gt;Par exemple pouvoir écrire un mail avec des retours à la ligne et des espaces ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Exemple du mail :&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Bonjour,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Voici les informations que vous recevrez :&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; - info1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; - info2&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Merci&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 13:55:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714524#M89788</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-01-10T13:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714525#M89789</link>
      <description>&lt;P&gt;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 &lt;A href="https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules?view=powershell-7.4#here-strings" target="_blank"&gt;https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules?view=powershell-7.4#here-strings&lt;/A&gt; ).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I wrote functions to send email in JMP using Send-MailMessage, I did find using -BodyAsHtml easier than just -Body.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 14:05:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714525#M89789</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-10T14:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714526#M89790</link>
      <description>&lt;P&gt;Merci pour vos réponses !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pouvez-vous montrer un exemple svp ?&lt;/P&gt;&lt;P&gt;J’ai déjà essayé quelque chose comme ceci&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 14:26:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714526#M89790</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-01-10T14:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714527#M89791</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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")
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jan 2024 14:47:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714527#M89791</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-10T14:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714528#M89792</link>
      <description>&lt;P&gt;Existe-t-il la possibilité de le rajouter dans le script ci-dessous svp ?&lt;/P&gt;&lt;P&gt;Dans la partie « commandes » ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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 &amp;lt;&amp;lt; Read ) ) ),
	WriteFunction(
		Function( {this},
			icommand++;
			If( icommand &amp;lt;= N Items( commands ),
				this &amp;lt;&amp;lt; Write( commands[icommand] );
			,
				this &amp;lt;&amp;lt; WriteEOF;
			);
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jan 2024 15:03:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714528#M89792</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-01-10T15:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714542#M89795</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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")
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jan 2024 16:47:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714542#M89795</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-10T16:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714823#M89813</link>
      <description>&lt;P&gt;Super, merci pour votre réponse !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;De la même façon, est-il possible de rajouter des caractères spéciaux dans le corps du mail ?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:23:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714823#M89813</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-01-11T09:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714850#M89816</link>
      <description>&lt;P&gt;Send-Mailmessage has -Encoding parameter&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/send-mailmessage?view=powershell-7.4" target="_blank" rel="noopener"&gt;Send-MailMessage (Microsoft.PowerShell.Utility) - PowerShell | Microsoft Learn&lt;/A&gt;&amp;nbsp;which could work. Or maybe you need those here-strings or convert to html and manage them there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

str = "\[$body = @'
Use a quotation mark, like ' or ", to begin a string.
!\!"#$%&amp;amp;'()*+,-./:;&amp;lt;=&amp;gt;?@[\]^`{|}~‒–—―‘’‚‛“”„‟…
'@
Write-Output $body
]\";

RP = Run Program(
	Executable("powershell.exe"),
	Options({str}),
	ReadFunction("text")
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:41:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714850#M89816</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-11T09:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: SMTP setup</title>
      <link>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714853#M89818</link>
      <description>&lt;P&gt;Merci pour votre réponse.&lt;/P&gt;&lt;P&gt;En parlant des caractères spéciaux, je parlais notamment des accents «&amp;nbsp;é&amp;nbsp;» ou «&amp;nbsp;à&amp;nbsp;».&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 09:55:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/SMTP-setup/m-p/714853#M89818</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-01-11T09:55:18Z</dc:date>
    </item>
  </channel>
</rss>

