vote up 0 vote down star
1

Hello everyone. How can i send mails through the php script?? I am trying to do somthing like this:

for($k=0;$k<=$x->length-1;$k++)
{
    for($l=0;$l<=$j-1;$l++)
    {
        if($y->item($k)->nodeValue==$JobNoArr[$l] && $AcceptanceDateArr[$l]=='0000-00-00')
        {   
            //echo  $v->item($k)->nodeValue ;
            $email = $v->item($k)->nodeValue . ",";
            $to = $email;
            $subject = "My subject";
            $txt = "Hello world!";
            $headers = "From: webmaster@example.com" . "\r\n" .
            "CC: someother.valid@email.adr";
            mail($to,$subject,$txt,$headers);
        }
    }
}

Please help me in this issue.

Best Zeeshan

flag

72% accept rate
1  
So you have some code. How does it behave that differs from how you expect it to behave? What errors are reported? – David Dorward Jun 29 at 15:09
Well i am sending email and the mail is going over to google ids but not to yahoo or another domain that i am basically looking for to work. – Zeeshan Rang Jun 29 at 18:56
$y seems to be the result of a DOMXPath::query() and $JobNoArr/$AcceptanceDateArr could come from a database query, right so far? In that case the nested for-loops "smell" unnecessary. Could you be a bit more specific about the data sources and the way you select certain records (from the xml and the database)? – VolkerK Jul 8 at 11:49
my domain name of the From mail address is different from the server's name i am sending my mails from. So it was giving me a problem. It works now when i changed that. – Zeeshan Rang Jul 8 at 14:46
My mail function looks like this mail($toUser,$subject,$body,$headers, "-fseema.zeeshan@servername.com") there is a -f in front of the from mail address – Zeeshan Rang Jul 8 at 14:51

8 Answers

vote up 12 vote down check

I strongly advice against tinkering the mail together "manually" + using php's mail() function. Composing valid emails and delivering them successfully is trickier than it seems at first glance. You want assistance with the encoding, putting parts together, validation/sanitation, you want a bit more error reporting than just "bool mail(...)", you often need support for authentication and so on and on... mail() doesn't offer any of these things.
Better try something like SwiftMailer. You can still configure it to use php's mail() function if you must but you can also do fancier stuff a lot easier. I highly recommend it.

link|flag
SwiftMailer is rather nice, we make our end users use that now because the mail() function on Windows PHP is so broken. – Kev Jun 29 at 16:43
2  
The mail function on Windows PHP is not broken. I use it all the time. – Charlie Somerville Jul 6 at 23:57
2  
notepad.exe isn't broken either, still it's not my first choice for C# development. – VolkerK Jul 8 at 9:03
vote up 3 vote down

first do

echo $result = mail($to,$subject,$txt,$headers);

and see what u get , error ?

I recommend to use a class such phpMailer

why you have comma in the end of ths line ?

$email = $v->item($k)->nodeValue . ",";

you send to one mail every time.

link|flag
vote up 6 vote down

You're trying too much all at once. Try going one step at a time. First send a simple email, with hard-coded parameters to get that working, then troubleshoot it within the context of your nested loops.

link|flag
my code works for a few domains, like google.. but not all of them. – Zeeshan Rang Jun 29 at 18:57
3  
You may be hitting spam-filters, etc. – Jonathan Sampson Jul 2 at 13:12
vote up 4 vote down

The code (the inner most block) looks correct. Make sure your environment is setup correctly. http://ca3.php.net/manual/en/mail.setup.php

link|flag
vote up 5 vote down

the problem is mail function is very unreliable, especially when sending large amount of emails.

i would recommend looking into PHPmailer library (uses direct SMTP connection): http://phpmailer.codeworxtech.com/

link|flag
vote up 2 vote down

php-s mail function uses sendmail as a MTA, so if some mails go through and some not, I would look at sendmail's log for errors.

link|flag
Not really. PHP uses the sendmail API. Any self-respecting MTA on Unix/Linux can emulate sendmail through a wrapper. – Sander Marechal Jul 6 at 12:57
1  
Correct. Still, my point is that mail sent through PHPs mail function goes out through the system mailer and for me, that would be the first place to look for errors. – Marie Fischer Jul 6 at 15:17
vote up 1 vote down

If you are on a shared web host, or your home computer, the main domain for the server will be something like

server.your-isp-or-host.com

The spam filter will then see the email claiming to be from

yourdomain.com

when it really came from the first address, and would then delete it.

This would explain the hit-and-miss nature of your error.

If you are on a dedicated server, or a static IP pointing to your home computer with properly set up DNS, the above does not apply.

link|flag
vote up 1 vote down

if it works sending emails to gmail then it should work fine sending emails to yahoo too

you may find that the issue is not the sending of the emails, but maybe yahoo is marking them as spam or blocking them at the gateway

i notice you are appending a comma to the end of the email address, what is the point of that ?

there may be other problems, are your loops correct, are they covering all the cases you expected.

are you sending thousands of emails ? can your mta handle the rate at which you are putting emails into the queue

is your script hitting max_execution time and stopping ?

link|flag
none of the above.. my script is working fine for gmail, and other mail servers, but not working for yahoo .. I am not sending thousands of mail, but ya a couple hundred. – Zeeshan Rang Jul 8 at 13:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.