PHPMail error - 220-We do not authorize the use of this system to transport unsolicit

Status
Not open for further replies.

OHLFantasyHockey

New Member
Messages
1
Reaction score
0
Points
0
Ugh... trying to setup PHPMail and receive the following errors:

220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail.
SMTP -> get_lines(): $data was ""
SMTP -> get_lines(): $str is "250-vox.x10hosting.com Hello localhost.localdomain [127.0.0.1] "


I see a thousand similar questions on Google, but none of the solutions seem to help... the code is below: please let me know where I've gone wrong...

Thanks in advance.


public $Priority = 3
public $CharSet = 'iso-8859-1
public $Encoding = '8bit'
$ErrorInfo = '
public $From = 'webmaster+ohlfantasyhockey.com';
public $FromName = 'webmaster+ohlfantasyhockey.com';
public $Sender = ''
public $ReturnPath = ''
public $Subject = ''
public $Body = '';
public $AltBody = '';
$MIMEBody = '';
$MIMEHeader = '';
$mailHeader = '';
public $WordWrap = 0;
$Mailer = 'mail';
public $Sendmail = '/usr/sbin/sendmail';
public $UseSendmailOptions = true;
public $PluginDir = ''
public $ConfirmReadingTo = ''
public $Hostname = 'localhost';
public $MessageID = '';
public $MessageDate = '';
public $Host = 'localhost';
public $Port = 25;
public $Helo = ''
public $SMTPSecure = '';
public $SMTPAuth = true;
public $Username ='webmaster+ohlfantasyhockey.com'
public $Password ='*****';
public $AuthType = 'ntlm';
public $Realm = ''
$Workstation = ''
public $Timeout = 10;
public $SMTPDebug = true; / public $Debugoutput = "echo";
 

hbazer

Member
Messages
398
Reaction score
7
Points
18
Re: PHPMail error - 220-We do not authorize the use of this system to transport unsol

About 16:30 2013-03-14 UTC

I ran a Email test PHP script on the three (3) free-hosting servers and a Premium server [ s1 ]

The free-hosting servers would send mail to their self - where it was read - but not to any other Email server

The Premium server would send mail to its self - and to Email accounts on the three (3) free-hosting servers - and to a gmail.com Email account - where they were read

SMTP server for the three (3) free-hosting servers has a 'issue' with sending Emails to 'other' servers
 
Status
Not open for further replies.
Top