Guest Posted February 26, 2003 Share Posted February 26, 2003 Instalation was a breeze, in final testing, and not sending ANY mail. No invoice/POs to customer or storeowner, no mail, no newletters, and no error messages. E-Mail Transport Method sendmail (I have tried both sendmail and SMTP.) E-Mail Linefeeds LF Use MIME HTML When Sending Emails false Verify E-Mail Addresses Through DNS false Send E-Mails true admin/includes/functions/general.php // Instantiate a new mail object $message = new email(array('X-Mailer: osC mailer')); // Build the text version $text = strip_tags($email_text); if (EMAIL_USE_HTML == 'true') { $message->add_html($email_text, $text); } else { $message->add_text($text); } // Send message $message->build_message(); $message->send($to_name, $to_email_address, $from_email_name, $from_email_address, $email_subject); } Any ideas??? Link to comment Share on other sites More sharing options...
toolcrazy Posted February 26, 2003 Share Posted February 26, 2003 Contact you provider and make sure they use sendmail. Not some other Linux base email systems. Just a thought. Steve ------------------------- Link to comment Share on other sites More sharing options...
Guest Posted February 26, 2003 Share Posted February 26, 2003 Thanks, but I am pretty sure they do, as on my admin panel it says; "Sendmail Path /usr/sbin/sendmail " Linda Link to comment Share on other sites More sharing options...
Guest Posted February 26, 2003 Share Posted February 26, 2003 do verify with them regarding sendmail also, what format are you entering the email address in the admin/configuration/my store panel? are you using [email protected] or MyStore <[email protected]> Link to comment Share on other sites More sharing options...
Guest Posted February 26, 2003 Share Posted February 26, 2003 Will check with them.. E-Mail Address [email protected] E-Mail From SportDealer <[email protected]> Send Extra Order Emails To Linda <[email protected]> Linda Link to comment Share on other sites More sharing options...
Guest Posted February 26, 2003 Share Posted February 26, 2003 well you email formats look correct - did you check to see if there are trailing blank spaces in the email fields? that could cause a problem.... we are using MS1 and have not had any problems with email (except when we typed it in wrong.... doh) Link to comment Share on other sites More sharing options...
Guest Posted February 26, 2003 Share Posted February 26, 2003 Problem solved, but I don't know why! It didn't like the address [email protected] When I changed it to [email protected] everything started working! Took longer to solve this than all the "hard stuff"! Thanks again, Linda Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.