Hello guys. I deployed SAS 9.4M7 on linux, everything seems to be set up correctly. When deploying SAS specified the required parameters as specified in this document: https://documentation.sas.com/doc/en/webeditorcdc/3.8/webeditorag/p0dwihvzcwztuzn1g9l7ke2v1txj.htm But when launching campaigns, notifications are not received, my colleagues do not see calls from the middle server to the mail server. In the business context settings, CIS unchecked the "disable notification system" checkbox. I turned on notifications for all stages of launching campaigns, specified recipients, in the campaign I also checked that the notification settings are enabled. But notifications are not received. I checked with SAS EG whether notifications were coming, ran the following query: data null;
proc sql;
select put(CHECK_SYSDATE,datetime9.)
into : date_check TRIMMED
from cdm.hello_outbox;
quit;
filename outbox email
to=('my_mail@prod.ro')
CC=('my_mail2@prod.ro')
subject='Hello'
;
data;
file outbox;
put "&date_check.";
put " ";
run; And I get a message. Please tell me where to look for settings or other ideas.
... View more