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