<?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: Using JSL to send emails in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359736#M60964</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/24655"&gt;@lalala&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Not sure if there is a way to do it with the commands that were listed previously in this thread. The text is just tab-delimited and you can edit it in the email. I am not aware of any commands to modify this when sending the table as text&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; However, there is a possible workaround that might suit your needs. You have to get the data table report as a picture, save it, and then send it as an attachment. It will look like the data table format in JMP report windows.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
dt = Data Table( "Big Class" );
path="your path\"; //be sure to have the last backslash included in this.
tb=dt&amp;lt;&amp;lt;Get As Report();
tb&amp;lt;&amp;lt;Get Picture();
tb&amp;lt;&amp;lt;Save Picture(path||"pic.png", "png");
Mail("my.email@email.com", "dt names", "The data is \!n", path||"pic.png");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; You can of course save the picture in different formats than png.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The attachment will look like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pic.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/30392i0B4D2C1C507D8C67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pic.png" alt="pic.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not ideal, but the data will be formatted and aligned as desired. It won't be editable or copy/pastable like the text email version. Perhaps you can put in a request to JMP to have them provide more options for the Get Text() command so it can provide more complex formatting options?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
    <pubDate>Wed, 17 Feb 2021 14:26:24 GMT</pubDate>
    <dc:creator>SDF1</dc:creator>
    <dc:date>2021-02-17T14:26:24Z</dc:date>
    <item>
      <title>Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231248#M45861</link>
      <description>&lt;P&gt;I'm trying to use JSL to send emails as part of a data retrieval query.&amp;nbsp; How do I embed a data table or Journal table into the body of my text message?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 14:22:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231248#M45861</guid>
      <dc:creator>lou</dc:creator>
      <dc:date>2019-10-29T14:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231300#M45869</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5273"&gt;@lou&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I did a search for Mail in the Scripting Index and found this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Mail( "test@example.com", "revelation", "JMP is great.", "$SAMPLE_DATA/Big Class.jmp" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; I tested it out with the Alarm Script example and it send me a message. I did not attach any JMP file, and not sure if it will embedd in the email body, but it will at least offer to add an attachment. Should solve your problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 16:20:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231300#M45869</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2019-10-29T16:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231316#M45870</link>
      <description>&lt;P&gt;Hi DS,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp; Attaching is an alternative.&amp;nbsp; Still looking for a way to add this to the main message, whether by table, journal or picture.&lt;/P&gt;&lt;P&gt;Lou&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 17:20:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231316#M45870</guid>
      <dc:creator>lou</dc:creator>
      <dc:date>2019-10-29T17:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231333#M45872</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5273"&gt;@lou&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; This was a great challenge, and I think I figured it out. Should be only about three lines of code.&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 );
dt = Data Table( "My Data Table" ); //this defines whichever data table you're dealing with
tb=dt&amp;lt;&amp;lt;Get As Report(); //this generates a data table report
Mail("myemail@address.com", "subject", "The data is " || Eval(tb&amp;lt;&amp;lt;Get Text)); //Using the Get text command generates a list, i.e. {"..."} which can be evaluated in the Mail command&amp;nbsp;because&amp;nbsp;it&amp;nbsp;has&amp;nbsp;quotes&amp;nbsp;around&amp;nbsp;it&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; I tested it on a data table of mine and it worked great. It even puts the text in a data table style/format. It is just text, but this should solve the original problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;UPDATE: I went back and tested if you could add more text to the body and you can if you wrap the &amp;lt;&amp;lt;Get Text portion in an Eval() statement and&amp;nbsp; concatenate with ||. So, I think this can get more advanced and "complicated" by concatenating several Eval() portions, depending on the complexity of the automated script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 19:26:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231333#M45872</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2019-10-29T19:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231349#M45874</link>
      <description>&lt;P&gt;Hi DS,&lt;/P&gt;&lt;P&gt;Thank you very much!!&amp;nbsp; This is what I needed!&amp;nbsp; I appreciate your help.&lt;/P&gt;&lt;P&gt;Lou&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 19:53:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231349#M45874</guid>
      <dc:creator>lou</dc:creator>
      <dc:date>2019-10-29T19:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231350#M45875</link>
      <description>You're welcome. I also found out that if you include a \!n within quotations after your "opening sentence", you can have a carriage return before the data table is printed in the email.</description>
      <pubDate>Tue, 29 Oct 2019 19:58:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/231350#M45875</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2019-10-29T19:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353605#M60315</link>
      <description>&lt;P&gt;Hi, how did you manage to add the carriage return, I've tried all options with&amp;nbsp;&lt;SPAN&gt;\!n, but no success. Can you add an example please?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Cheers!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 15:46:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353605#M60315</guid>
      <dc:creator>Stefan</dc:creator>
      <dc:date>2021-01-28T15:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353632#M60322</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/17138"&gt;@Stefan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Using the "escape sequences", as they're called, can sometimes be a bit tricky. Sometimes they work as one would think they should, but other times they need to be invoked differently. It's kind of like :Column vs Column(dt, #), or As Column(). They all reference columns, but there are some cases where one is better than another.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Anyway, you were wanting a specific example for the carriage return, here is one that works with a built in data table in JMP.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
dt = Data Table( "Big Class" );
tb=dt&amp;lt;&amp;lt;Get As Report();
Mail("myemail@address.com", "dt names", "The data is "||"\!n"||Eval(tb&amp;lt;&amp;lt;Get Text));&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; You don't have to have the extra concatenate || in there between "The data is " and !\n. You can instead write it as "The data is !\n" || Eval() and it'll work just the same. But, however you implement it, the !\n must be in quotations: "\!n" for it to be read correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; One note that might be the reason you're having problems is the host operating system. If you're working in OS vs Windows, then the carriage return is different: CR vs CR LF, respectively. If you're on a Mac, the "\!n" won't work. Instead, you should use "\!N" with a capital N. When you use that, it insert a line break appropriate for the host operating system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 16:16:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353632#M60322</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2021-01-28T16:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353638#M60327</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12549"&gt;@SDF1&lt;/a&gt;&amp;nbsp; thanks for the quick reply, tried the few options you are recommending, no joy still. I am running on Windows, JMP 15.2.1&lt;/P&gt;&lt;P&gt;This is the excerpt from the email body...&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The data is name age sex height weight...&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 16:39:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353638#M60327</guid>
      <dc:creator>Stefan</dc:creator>
      <dc:date>2021-01-28T16:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353641#M60328</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/17138"&gt;@Stefan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; That is really strange. I'm running JMP Pro 15.2.1 on W10 64-bit. This functionality is certainly not Pro dependent, so I can't imagine that's the case. When I run that code for the Big Class, I get this email out:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DiedrichSchmidt_1-1611852391900.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29801i319E3646EFE31AFB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DiedrichSchmidt_1-1611852391900.png" alt="DiedrichSchmidt_1-1611852391900.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Did you copy/paste the code exactly, with only changing the email address? If the code was changed other than the email address, this could impact the formatting in the email. Do you have a screen shot of the code and email you receive from JMP?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 16:49:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353641#M60328</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2021-01-28T16:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353815#M60346</link>
      <description>&lt;P&gt;Hi, this is the print screen...I think the issue might be the fact that I am not using Outlook as the email client, I am using Mailbird. Will try to configure Outlook and update&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stefan_0-1611910053082.png" style="width: 726px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29822i38459127C7ECF762/image-dimensions/726x118?v=v2" width="726" height="118" role="button" title="Stefan_0-1611910053082.png" alt="Stefan_0-1611910053082.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 09:18:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353815#M60346</guid>
      <dc:creator>Stefan</dc:creator>
      <dc:date>2021-01-29T09:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353917#M60353</link>
      <description>&lt;P&gt;Hi, it was indeed the email client. I uninstalled Mailbird and used Outlook and worked fine...&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jan 2021 12:54:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353917#M60353</guid>
      <dc:creator>Stefan</dc:creator>
      <dc:date>2021-01-29T12:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353918#M60354</link>
      <description>Glad to hear that you figured out the mail client issue. Odd that it should be so dependent on that, but so are carriage returns. Glad it's now working for you.&lt;BR /&gt;&lt;BR /&gt;DS</description>
      <pubDate>Fri, 29 Jan 2021 13:20:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/353918#M60354</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2021-01-29T13:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359634#M60959</link>
      <description>&lt;P&gt;Hi. is there a way the alignment per column be fixed? or if i could change the default font style used in this HTML email, cause it seems that the column is not align due to the letters in the default font style(arial) used takes different space per letter(like "I" has different space than "M"). so is there a way to change the font style or any other suggestion how to fix the alignment per column. thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 08:58:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359634#M60959</guid>
      <dc:creator>lalala</dc:creator>
      <dc:date>2021-02-17T08:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359736#M60964</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/24655"&gt;@lalala&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Not sure if there is a way to do it with the commands that were listed previously in this thread. The text is just tab-delimited and you can edit it in the email. I am not aware of any commands to modify this when sending the table as text&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; However, there is a possible workaround that might suit your needs. You have to get the data table report as a picture, save it, and then send it as an attachment. It will look like the data table format in JMP report windows.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
dt = Data Table( "Big Class" );
path="your path\"; //be sure to have the last backslash included in this.
tb=dt&amp;lt;&amp;lt;Get As Report();
tb&amp;lt;&amp;lt;Get Picture();
tb&amp;lt;&amp;lt;Save Picture(path||"pic.png", "png");
Mail("my.email@email.com", "dt names", "The data is \!n", path||"pic.png");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp; You can of course save the picture in different formats than png.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The attachment will look like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pic.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/30392i0B4D2C1C507D8C67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pic.png" alt="pic.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not ideal, but the data will be formatted and aligned as desired. It won't be editable or copy/pastable like the text email version. Perhaps you can put in a request to JMP to have them provide more options for the Get Text() command so it can provide more complex formatting options?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 14:26:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359736#M60964</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2021-02-17T14:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359925#M60984</link>
      <description>&lt;P&gt;hi. Thank you for your quick response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, I would like to ask again, could there be a possibility that I could attach the photo to the mail's body? Thank you in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2021 01:52:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/359925#M60984</guid>
      <dc:creator>lalala</dc:creator>
      <dc:date>2021-02-18T01:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/360121#M60988</link>
      <description>Not that I'm aware of.</description>
      <pubDate>Thu, 18 Feb 2021 13:48:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/360121#M60988</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2021-02-18T13:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/638487#M83633</link>
      <description>&lt;P&gt;Hi DS,&lt;/P&gt;&lt;P&gt;Is it possible to to send picture in the email body (not attachment) and at the same time attach a table? The Eval () and get text not working for picture&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 12:15:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/638487#M83633</guid>
      <dc:creator>dadawasozo</dc:creator>
      <dc:date>2023-06-03T12:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using JSL to send emails</title>
      <link>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/639587#M83717</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16303"&gt;@dadawasozo&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Not that I'm aware of, I believe you can only add it as an attachment, not within the body of the email. I think it can only handle text in the email.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 18:00:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Using-JSL-to-send-emails/m-p/639587#M83717</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2023-06-06T18:00:20Z</dc:date>
    </item>
  </channel>
</rss>

