Welcome Guest, Not a member yet? Register   Sign In
How to integrate Mail Queue with CodeIgniter
#7

[eluser]Flemming[/eluser]
if you have access to crontab on your linux host then you can try something like this:

open the crontab with the command crontab -e

then put this as the first line

Code:
*/5 * * * * lynx -dump http://www.yoursite.co.uk/script_to_cron.php > /dev/null

which will use the lynx browser to run your php script every 5 minutes. There are other ways - just search for crontab tutorials!

If your host does not allow you to access the crontab then you can use something like:

Code:
http://www.webbasedcron.com/
(I can recommend this one - I researched web-based cron services and this one seems the best)

Hope that helps!

Oh and by the way - there's a function missing from the example code I posted ...

In the model, it refers to

Code:
getNewsletter($newsletterID)
so you need to add this function to your model:

Code:
function getNewsletter($newsletterID)
    {        
        $this->db->where('uid', $newsletterID);
        return $this->db->get('newsletters')->row();
    }

just to get the newsletter data from the 'newsletters' table!


Messages In This Thread
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-13-2008, 10:40 PM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-14-2008, 03:39 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-15-2008, 05:26 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-15-2008, 08:15 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-15-2008, 10:03 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-18-2008, 06:57 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-20-2008, 02:23 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-22-2008, 12:45 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-27-2008, 04:26 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 11-04-2008, 07:21 PM
How to integrate Mail Queue with CodeIgniter - by El Forum - 12-12-2008, 10:02 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 01-29-2009, 04:24 PM
How to integrate Mail Queue with CodeIgniter - by El Forum - 01-30-2009, 01:29 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 02-02-2009, 03:29 PM
How to integrate Mail Queue with CodeIgniter - by El Forum - 11-17-2009, 10:33 PM
How to integrate Mail Queue with CodeIgniter - by El Forum - 11-18-2009, 08:22 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 10-25-2010, 07:31 AM
How to integrate Mail Queue with CodeIgniter - by El Forum - 11-02-2010, 10:00 AM



Theme © iAndrew 2016 - Forum software by © MyBB