When I send e-mails using the package UTL_SMTP I am getting this error when executing the comand UTL_SMTP.MAIL:
501 5.1.7 Bad sender address syntax
I am passing olny the e-mail as second parameter. This occurs only with certain smtp servers. The code is this:
sFrom := '[email protected]';
Utl_Smtp.Mail(Connection, sFrom);
Does anyone know how to fix this?
Thanks in advance.