Our company moved to office 365 and the mail port and protocol changed. I adjusted the mails sent from the events tab in IFS. I cannot run mails sent from PLSQL. Where can I change the settings?
With the following settings, mails sent from the events tab work.
Working mail is not working for the example procedure below.
PROCEDURE SISTEM_BILGISI
IS
parameter_attr_ VARCHAR2(2000);
result_key_ NUMBER;
report_attr_ VARCHAR2(2000);
msg_ VARCHAR2(32000);
print_job_id_ NUMBER;
attr_ VARCHAR2(4000);
date_ DATE;
attach_ VARCHAR2(2000);
text_ VARCHAR2(32766);
subject_ VARCHAR2(2000);
deger_ VARCHAR2(2000);
BEGIN
IFSAPP.Log_SYS.Init_Debug_Session_('en');
Command_SYS.Mail(
from_user_name_ => 'IFSAPP',
to_user_name_ => 'ayilmaz@sefine.com.tr',
--- cc_ => 'ayilmaz@sefine.com.tr',
text_ => 'vvvvvvv' ,
attach_ => attach_,
subject_ => 'aaaaaa' );
General_SYS.Init_Method(Sfn_Bt_Tcr_To_Ask_Util_API.lu_name_, 'Sfn_Bt_Tcr_To_Ask_Util_API', 'SISTEM_BILGISI');
END SISTEM_BILGISI;
I am waiting for your valuable information.