Hi No9, > As I said before this server was sending mails OK on other scripts (on > a different domain name) so I was surprised when these didn't.
If email is coming through from other scripts, you need to make sure the cakephp component is sending out in the same way. I had issues a while back and this (pasted from another email) helped: // Thought I'd share this for those who use the email component and find mails getting spammed or simply rejected, make sure you set the -f value to the same as the 'from' address, eg: $this->Email->from = 'Name Surname <[email protected]>'; $this->Email->replyTo = 'Name Surname <[email protected]>'; $this->Email->additionalParams = '-f [email protected]'; // worth a shot. j -- jon bennett w: http://www.jben.net/ iChat (AIM): jbendotnet Skype: jon-bennett --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
