Welcome Guest, Not a member yet? Register   Sign In
Sending Emails from Database
#4

[eluser]TWP Marketing[/eluser]
This is one way:
it makes each array entry unique, preventing overwriting
Code:
...
    $s = 0; // index for 'sent' array
    $f = 0; // index for 'failed' array
    if ($this->email->send()) {
        $result = array(
            'sent' => array($s => $email)
        );
        $s++; // increment the index for the next use
    } else {
        $result = array(
            'failed' => array($f => $email)
        );
        $f++; // increment the index for the next use
    }
...


Messages In This Thread
Sending Emails from Database - by El Forum - 09-04-2012, 08:24 AM
Sending Emails from Database - by El Forum - 09-04-2012, 08:35 AM
Sending Emails from Database - by El Forum - 09-04-2012, 08:42 AM
Sending Emails from Database - by El Forum - 09-04-2012, 09:14 AM
Sending Emails from Database - by El Forum - 09-04-2012, 09:50 AM
Sending Emails from Database - by El Forum - 09-04-2012, 09:54 AM
Sending Emails from Database - by El Forum - 09-04-2012, 10:19 AM
Sending Emails from Database - by El Forum - 09-04-2012, 11:35 AM
Sending Emails from Database - by El Forum - 09-04-2012, 11:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB