i downloaded Dndas Mailer Cotrol and activated SMTP service on my PC, but I get else branch in this pieace of code:
PHP код:
sysMailer mailer = new SysMailer();
;
if (mailer.validateAddress("my@address.com") == 6)
info("validation operation failed");
else
mailer.quickSend("our@address.com", "my@address.com", "subj", "bod");
mailer.finalize();
let say that "my@address.com" is a valid addres. so i suspect, that my smtp servce produces an error.
maybe you have any tips how configure correct smpt or to test if my smtp works fine.
Paul...