Hi, I've spent a lot of time trying to get my mass mailer working with no success. Firstly, I've read every topic on the forum and I've done everything suggested.
My cron jobs are set up correctly, I'm getting reports that say this:
- Start email send -
Total queued emails: 2
Ready for send: 2
Processed emails: 0
Processed emails with errors: 0
The emails do not send and the reports just stay that way.
I've also modified admin/notifies.php, changing `EmailNotify` = 'NotifyMe' to `EmailNotify` = '0' but still, it doesn't work.
I'm currently looking in periodic/notifies.php and have noticed that this code:
SELECT
NotifyQueue.Email as ID1,
NotifyQueue.Msg as ID2,
NotifyEmails.Name as Name,
NotifyEmails.Email,
NotifyMsgs.Subj,
NotifyMsgs.HTML as Body
FROM NotifyQueue
INNER JOIN NotifyMsgs ON
(NotifyMsgs.ID = NotifyQueue.Msg)
INNER JOIN NotifyEmails ON
(NotifyEmails.ID = NotifyQueue.Email)
WHERE
NotifyQueue.`From` = 'NotifyEmails' AND
NotifyEmails.EmailFlag = 'NotifyMe'
LIMIT $total_per_query
doesn't actually return any results when run in phpMyAdmin. I removed the LIMIT on the last line and also changed 'NotifyMe' to 0 with no success.
Can anyone help?