![]() |
Mail system Error - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Mail system Error (/showthread.php?tid=50188) |
Mail system Error - El Forum - 03-17-2012 [eluser]Shiju S S[/eluser] I have done code for sending mails Code: $emailto = '[email protected]'; I am getting an error message in the FROM email address: Mail Delivery Subsystem [email protected] The original message was received at Sat, 17 Mar 2012 13:04:29 -0700 from localhost [127.0.0.1] ----- The following addresses had permanent fatal errors ----- <[email protected]> (reason: 553 sorry, your mail was administratively denied. (#5.7.1)) ----- Transcript of session follows ----- ... while talking to relay-hosting.secureserver.net.: >>> MAIL From:<[email protected]> SIZE=1059 <<< 553 sorry, your mail was administratively denied. (#5.7.1) 501 5.6.0 Data format error Final-Recipient: RFC822; [email protected] Action: failed Status: 5.1.3 Diagnostic-Code: SMTP; 553 sorry, your mail was administratively denied. (#5.7.1) Last-Attempt-Date: Sat, 17 Mar 2012 13:04:29 -0700 ---------- Forwarded message ---------- From: <[email protected]> To: [email protected] Cc: Date: Sat, 17 Mar 2012 13:04:29 -0700 Subject: Shiju S S Team Leader – New Client Acquisition Name: Shiju S S Email: [email protected] Phone:9895036243 City:Ekm What can be the reason: The conventional mail is working well Code: $headers = 'From: '.'Manager '.' <'.$emailto.'>' . "\r\n" . 'Reply-To: ' . $email; Mail system Error - El Forum - 03-17-2012 [eluser]InsiteFX[/eluser] Because you forgot the second parameter! Code: $this->email->from('[email protected]', 'Your Name'); Mail system Error - El Forum - 03-17-2012 [eluser]Shiju S S[/eluser] Changed code to Code: $fname = $this->input->post('fname'); Quote:The original message was received at Sat, 17 Mar 2012 16:08:13 -0700 My error reporting function gives message: Quote:From: "Shiju S S" Please help. My server is in godaddy Mail system Error - El Forum - 03-17-2012 [eluser]InsiteFX[/eluser] Try changing the email to to some other address, some server will not allow send from and to to the same server. Also did you setup your email in php.in and your email config? Mail system Error - El Forum - 03-17-2012 [eluser]Shiju S S[/eluser] I think the problem is with the goddady. The mail sending worked by using an emailid registered in goddady in the from field. Is there any other solution. Thanks for the help. |