i had another problem with smtp and the email component
is this a bug? or a problem on freenet.de?

"
Hi. This is the qmail-send program at mail.gmx.net.
I'm afraid I wasn't able to deliver your message to the following
addresses.
This is a permanent error; I've given up. Sorry it didn't work out.

<[email protected]>:
195.4.92.212_failed_after_I_sent_the_message./
Remote_host_said:_550_Syntax_error_in_header/

--- Below this line is a copy of the message.
...
"

it only happens with this domain
all other user mails got transmitted
any ideas why the headers could be messed up for this mail service?

thx


On 5 Sep., 16:32, brian <[email protected]> wrote:
> This isn't a Cake issue, it's DNS. Search google for that error and
> you'll find some information about it (that's about all I can tell you
> about it).
>
> But it may be simply that you have a typo: "smpt.1und1.de" should
> probably be "smtp.1und1.de".
>
> On Fri, Sep 4, 2009 at 7:03 PM, Benedikt R.<[email protected]> wrote:
>
> > Hi!
>
> > I get this error:
> > php_network_getaddresses: getaddrinfo failed: nodename nor servname
> > provided, or not known: 0
>
> > This is my controller action:
>
> > function register( ) {
> >        if ( !empty($this->data) ) {
> >                $this->Email->smtpOptions = array(
> >                        'port' => '25',
> >                        'timeout' => '30',
> >                        'host' => 'smpt.1und1.de',
> >                        'username' => '[email protected]',
> >                        'password' => '#########'
> >                );
>
> >                $this->Email->sendAs = 'text';
> >                $this->Email->delivery = 'smtp';
> >                $this->Email->from = '[email protected]';
> >                $this->Email->to = '[email protected]';
> >                $this->Email->subject = 'User Registration';
> >                $this->Email->send('Hello!');
> >                $this->Session->setFlash('Message body!');
>
> >                $this->set('smtp_errors', $this->Email->smtpError);
> >        }
> > }
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to