I'm setting up smtp on IIS
web server using php
In the php.ini
file the smtp section as follow:
[mail function]
SMTP = outbound.mailhop.org
smtp_port = 25
auth_username = my_dyndns_username
auth_password = pwd
sendmail_from = no-reply@website.com
The problem is that when I try to call the mail() function the smtp server says
SMTP server response: 550 You must authenticate to use Dyn Standard SMTP
where can I tell IIS (or php) the username and password in order to be authenticated on dyndns server?
Dario