Re: sendmail crash

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Michiel van der Blonk wrote:
> I am having a problem with sendmail. It gives me a segfault when I use the
> Mail and Mail_Mime package right when I call sendmail.
>
> I am using the following params
>     Array
>     (
>         [host] => localhost
>         [port] => 25
>         [auth] => 1
>         [username] => account
>         [password] => secret
>         [sendmail_path] => /path/to/sendmail
>     )
>
> Then I prepare and call the send command
>     $hdrs = array(
>         'From'    => $from,
>         'Subject' => "Confirmation for $person->FIRST_NAME
> $person->LAST_NAME",
>         'Bcc' => me@xxxxxxxx
>     );
>
>     $mime = new Mail_mime($crlf);
>     $text="text";
>     $html="<html><body>text</body></html>";
>     $mime->setTXTBody($text);
>     $mime->setHTMLBody($html);
>     $mail =& Mail::factory('sendmail', $params);
>     return $mail->send($person->EMAIL, $hdrs, $body);
>
> Result: Apache error messages:
> emalloc: cannot allocate ... bytes
> and also
> erealloc: cannot allocate ... bytes

Is the above the ACTUAL email you are sending?

Or merely a demonstrative sample?

Cuz, like, if the email you are REALLY sending is *HUGE* then I'd not be
surprised by the messages above...

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux