|
From: SourceForge.net <no...@so...> - 2007-01-26 06:13:17
|
/mod/mailinglists item #1645003, was opened at 2007-01-26 06:13 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=765094&aid=1645003&group_id=81360 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Whit (whitbrett) Assigned to: Nobody/Anonymous (nobody) Summary: Unable to send mail Initial Comment: When the user registers, the system will send the mail letting them know that they are signed up. The problem is that when they try to send mail the a mailing list, no mail is sent. I noticed that the registration is using the direct mail function to sendmail, and that the lists are using the pear libs. I get no error, just no mail is sent. I am using 0.10.2 Here is the code that is not working: The first one (that i added) works. This is going direct. The second one does not. $mail = &Mail::factory('mail'); $headers = 'From: ' . $fromName . ' <' . $fromEmail . ">\r\n"; $emailSubject = $theSubject ; mail('wh...@bi...',$emailSubject , 'this is atest', $headers); if($mail->send($userResult[0]['email'], $hdrs, $body)) $numberSent++; } Any suggestions... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=765094&aid=1645003&group_id=81360 |