Hello, I'm tryig to send an email directly froam SAS, but the system give me this message "ERROR: Email: Permission is denied." I'm using this code: filename mymail email "ABC@servidor.pt"
subject="Relatório P348"
from="ABC@servidor.pt"
to="ABC@servidor.pt"
attach="C:\Users\......\Abc.xlsx";
data _null_;
file mymail;
put Texto";
put "Texto.";
run; I've already run this command: proc setinit;
run; And I've obtained this message: Operating System: WX64_SV . Product expiration dates: ---Base SAS Software 29JUN2018 ---SAS/STAT 29JUN2018 ---SAS/GRAPH 29JUN2018 ---SAS Integration Technologies 29JUN2018 ---SAS/Secure 168-bit 29JUN2018 ---SAS/Secure Windows 29JUN2018 ---SAS Enterprise Guide 29JUN2018 ---SAS/ACCESS Interface to PC Files 29JUN2018 ---SAS/ACCESS Interface to ODBC 29JUN2018 ---SAS Workspace Server for Local Access 29JUN2018 ---High Performance Suite 29JUN2018 ---SAS Add-in for Microsoft Excel 29JUN2018 ---SAS Add-in for Microsoft Outlook 29JUN2018 ---SAS Add-in for Microsoft PowerPoint 29JUN2018 ---SAS Add-in for Microsoft Word 29JUN2018 What am I doing wrong? Can anyone help me?
... View more