gmail - PHPMailer from Google users blocked by my Server? -


hi im using phpmailer in order receive messages websites contact form. email required field. messages, fake email addresses, except gmail. when user insert gmail address in email field contact form responds message sent user receives error below in spam gmail folder:

the original message received @ tue, 24 sep 2013 12:08:21 -0700 localhost [127.0.0.1]  ----- following addresses had permanent fatal errors -----   <info@mywebsitename.com>   (reason: 553 sorry, mail administratively denied. (#5.7.1))  ----- transcript of session follows -----   ... while talking relay-hosting.secureserver.net.:   mail from:<usernamemail@gmail.com> size=1543 body=8bitmime   <<< 553 sorry, mail administratively denied. (#5.7.1)   501 5.6.0 data format error  reporting-mta: dns; xxxxxxx.xxx.xxxx.xxxx.secureserver.net received-from-mta: dns; localhost arrival-date: tue, 24 sep 2013 12:08:21 -0700 final-recipient: rfc822; info@mywebsitename.com action: failed status: 5.1.3 diagnostic-code: smtp; 553 sorry, mail administratively denied. (#5.7.1) last-attempt-date: tue, 24 sep 2013 12:08:22 -0700 

well seems server refuses send emails coming gmail users. why?

thank you

ok answering question.

yes server (godaddy) blocked gmail addresses.

as seems blocks yahoo, aol, live, hotmail , batch of others thats not "owned" registered domains, due spam(as say).

well changed headers bit.

$mail->setfrom = 'info@myregistereddomain.com' $mail->addreplyto( $email , $name ); $mail->addaddress( $toemail , $toname ); 

now working


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -