<?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: send email via sas body email align texts to right in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/send-email-via-sas-body-email-align-texts-to-right/m-p/934913#M367598</link>
    <description>&lt;P&gt;Have a look at:&lt;/P&gt;
&lt;P&gt;Proc REPORT Tutorial&lt;BR /&gt;Cynthia L. Zender, SAS Institute, Inc., Cary, NC&lt;BR /&gt;&lt;A href="https://www.lexjansen.com/wuss/2010/TUT/3027_1_TUT-Zender.pdf" target="_blank"&gt;https://www.lexjansen.com/wuss/2010/TUT/3027_1_TUT-Zender.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you need&lt;/P&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;just=r and&lt;/LI&gt;
&lt;LI&gt;borderwidth=0&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class nowd; 
run;

proc report data=sashelp.class nowd
/* PROC REPORT component COLUMN is for the data cells */
  style(column)={just=r background=white
                 cellspacing=4pt
                 bordercolor=black borderwidth=0
                 rules=rows frame=box};  
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Sun, 07 Jul 2024 16:11:42 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2024-07-07T16:11:42Z</dc:date>
    <item>
      <title>send email via sas body email align texts to right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/send-email-via-sas-body-email-align-texts-to-right/m-p/934517#M367485</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I run a code that send an email via sas and send a table in body of email and also attach XLX file.&lt;/P&gt;
&lt;P&gt;The code is working 100% but there are 2 issues I want to improve-&lt;/P&gt;
&lt;P&gt;1-&amp;nbsp; The sentences in body email&amp;nbsp; are written in Hebrew so they should be in right align and not left align.&lt;/P&gt;
&lt;P&gt;2- There are lines that are not nice between the sentences in body email.&lt;/P&gt;
&lt;P&gt;What is the way to remove them that between the sentences there will not be lines.&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="Ronein_0-1719988551544.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98106i7F25FC5B82872699/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ronein_0-1719988551544.png" alt="Ronein_0-1719988551544.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;PRE&gt;&lt;CODE class=" language-sas"&gt;title;
footnote;
filename temp email
from = "Dave.Choen@gmail.com"
TO=("Ben.Suart@gmail.com",
"Nataliya.Shetrit@gmail.com")
subject="Sales control"
type="text/html"
encoding='utf-8' 
attach=("/usr/local/SAS/SASUsers/LabRet/UserDir/udclk79/Haamadot_Daily_Bakara.xlsx"
content_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
ODS html body=temp ;
ods html text = "היי;
ods html text = "להלן בקרה יומית של העמדות";
ods html text = " ";
ods html text = "בברכה,דייויד";
title;
 
proc report data=Last_7Days_c  nowd;
compute STAT;
if substr(STAT,1,4)='AMNT' then call define(_row_, "style", "style=[backgroundcolor=lightyellow]");
else IF STAT='' then call define(_row_, "style", "style=[backgroundcolor=lightgrey]");
endcomp;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 08:11:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/send-email-via-sas-body-email-align-texts-to-right/m-p/934517#M367485</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-07-03T08:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: send email via sas body email align texts to right</title>
      <link>https://communities.sas.com/t5/SAS-Programming/send-email-via-sas-body-email-align-texts-to-right/m-p/934913#M367598</link>
      <description>&lt;P&gt;Have a look at:&lt;/P&gt;
&lt;P&gt;Proc REPORT Tutorial&lt;BR /&gt;Cynthia L. Zender, SAS Institute, Inc., Cary, NC&lt;BR /&gt;&lt;A href="https://www.lexjansen.com/wuss/2010/TUT/3027_1_TUT-Zender.pdf" target="_blank"&gt;https://www.lexjansen.com/wuss/2010/TUT/3027_1_TUT-Zender.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you need&lt;/P&gt;
&lt;UL class="lia-list-style-type-square"&gt;
&lt;LI&gt;just=r and&lt;/LI&gt;
&lt;LI&gt;borderwidth=0&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc report data=sashelp.class nowd; 
run;

proc report data=sashelp.class nowd
/* PROC REPORT component COLUMN is for the data cells */
  style(column)={just=r background=white
                 cellspacing=4pt
                 bordercolor=black borderwidth=0
                 rules=rows frame=box};  
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jul 2024 16:11:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/send-email-via-sas-body-email-align-texts-to-right/m-p/934913#M367598</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-07-07T16:11:42Z</dc:date>
    </item>
  </channel>
</rss>

