All,
I am using apex API to send emails/attachments but here is the issue on Lotus notes when emails are received there is this default text "Please respond to XXXXXX" at the header, how do i remove this default text from appearing in Lotus notes when Apex sends emails?
APEX_MAIL.SEND(
P_TO => xxxxx ,
P_FROM =>xxxx,
P_CC => xxxx,
P_BCC => xxx,
P_BODY => body text,
P_SUBJ => subject text,
P_BODY_HTML => html text); .......
using Apex 4.1.1/Oracle 11gx
thanks,