Email Not sending from site - subdomain

dutton

Perch
I can send email via script on our site as long as the email address is already on our semi-dedicated server. But as soon as I use an email from outside the Jodohost's servers, I get a relay error.

This problem is happening on a subdomain (i.e. site.domain.com) not our regular domain.

I believe I have tried everything. I used our main account email address and smtp address and then i used the subdomain email address and smtp (i.e. mail.site.domain.com)

Still getting the same error. Any ideas?
 
If using mail.yourdomain.com or mail.yoursubdomain.com, are you using smtp-auth as well?
 
Yes, this is what I am using...

Code:
            Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
            Flds.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtp.site.domain.com
			
		Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "[email protected]"
		Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "password"
 
Back
Top