<?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 Send email via sas in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Send-email-via-sas/m-p/913323#M359991</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I am using the following code to send an email with body text.&lt;/P&gt;
&lt;P&gt;My question- What is the way to change the code in order to have ability to write in Hebrew language?&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro send_Email_From_SAS();
filename outbox email
to=("joe.Dave@gmail.com","Ben1111@gmail.com")
subject="Weather info"
from='chris1234@gmail.com';
DATA _null_;
file outbox;
Put "Hi,"//
"Weather info was updated for date: &amp;amp;Agreement_Summary_Date."//
"Running date-&amp;amp;Today."//
"Raw data table1-r_r.Accum_Weather1"//
"Raw data table2-r_r.Accum_Weather2"//
"Kind Regards,"/
"Joe";
run;
%mend send_Email_From_SAS;
%send_Email_From_SAS;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 29 Jan 2024 06:15:00 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2024-01-29T06:15:00Z</dc:date>
    <item>
      <title>Send email via sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-email-via-sas/m-p/913323#M359991</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I am using the following code to send an email with body text.&lt;/P&gt;
&lt;P&gt;My question- What is the way to change the code in order to have ability to write in Hebrew language?&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro send_Email_From_SAS();
filename outbox email
to=("joe.Dave@gmail.com","Ben1111@gmail.com")
subject="Weather info"
from='chris1234@gmail.com';
DATA _null_;
file outbox;
Put "Hi,"//
"Weather info was updated for date: &amp;amp;Agreement_Summary_Date."//
"Running date-&amp;amp;Today."//
"Raw data table1-r_r.Accum_Weather1"//
"Raw data table2-r_r.Accum_Weather2"//
"Kind Regards,"/
"Joe";
run;
%mend send_Email_From_SAS;
%send_Email_From_SAS;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Jan 2024 06:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-email-via-sas/m-p/913323#M359991</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-01-29T06:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Send email via sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Send-email-via-sas/m-p/913324#M359992</link>
      <description>&lt;P&gt;Okay I found solution. Need to add&amp;nbsp;&lt;CODE class=" language-sas"&gt; encoding='utf-8' &lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro send_Email_From_SAS();
filename outbox email encoding='utf-8' 
to=("joe.Dave@gmail.com","Ben1111@gmail.com")
subject="עדכון נתוני מזג אוויר"
from='chris1234@gmail.com';
DATA _null_;
file outbox;
Put "שלום רב,"//
"נץוני מזג אוויר עודכנו עד תאריך: &amp;amp;Agreement_Summary_Date."//
"תאריך הרצת השליפה-&amp;amp;Today."//
"תוצר1-r_r.Accum_Weather1"//
"תוצר2-r_r.Accum_Weather2"//
"בברכה,"/
"יהושוע";
run;
%mend send_Email_From_SAS;
%send_Email_From_SAS;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 29 Jan 2024 06:30:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Send-email-via-sas/m-p/913324#M359992</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2024-01-29T06:30:31Z</dc:date>
    </item>
  </channel>
</rss>

