Ninjakreborn Posted August 21, 2006 Share Posted August 21, 2006 I don't understand one thing, I ahve had this problem for months, multiple projects, and sometimes multiple servers. It says the mail sends but it doesn't sometimes I never get the emails, sometimes I do. For instance on a project, I was added to a list in a database, I tried to mail but I never got an email(and the email was in there right), but what happened is the other people said they were getting them.And on my own site, the contactus form works, but when I set up the quickquote to test it, it has my email, it's like this$to = "[email protected], {$_POST['qqemail']}";but it never sends an email even though it says it does. Quote Link to comment https://forums.phpfreaks.com/topic/18192-mail/ Share on other sites More sharing options...
ToonMariner Posted August 21, 2006 Share Posted August 21, 2006 perhasp its ketting filtered out as spam, perhaps your inbox is full or you are over quota.....not sure about that $to string though!!!!$to = "Businessman <[email protected]>";would be more what I'd expect.. better still just [email protected] Quote Link to comment https://forums.phpfreaks.com/topic/18192-mail/#findComment-78050 Share on other sites More sharing options...
Ninjakreborn Posted August 21, 2006 Author Share Posted August 21, 2006 What about emailing it to 2-3 people? Quote Link to comment https://forums.phpfreaks.com/topic/18192-mail/#findComment-78056 Share on other sites More sharing options...
ToonMariner Posted August 21, 2006 Share Posted August 21, 2006 You have various methods but as these people don't know eahc other I would NOT create a string of $to address - they will be visble to all.Instead either use php to manage a mailing list (tutorials all over the shop) OR my preferred method would be...$to = "[email protected]";$header = "BCc: ";foreach($email as $key => $value){ $header .= $value . ";";}and send the header in the extra params of the mail function. Quote Link to comment https://forums.phpfreaks.com/topic/18192-mail/#findComment-78060 Share on other sites More sharing options...
Ninjakreborn Posted August 21, 2006 Author Share Posted August 21, 2006 that'll work, it started working after I changed that by the way, thanks. Quote Link to comment https://forums.phpfreaks.com/topic/18192-mail/#findComment-78064 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.