Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
136 views

Does SwiftMailer support asynchronous mail sending the way Mail_Queue does?

I want to send my emails using sendgrid's SMTP servers, but connecting to them, not at "Web-time", but via a (simple) queue. I know PEAR's Mail_Queue can enable me to do that, but can I do it using ...
1
vote
1answer
217 views

Mail_Queue PHP Crond - mail sends but PHP process hangs

This has been causing me a problem since I upgraded to PHP 5.3. The problem didn't happen with PHP 5.2. I have a PHP script (which is pretty much the stock Mail_Queue script) to send messages. I'm ...
1
vote
1answer
297 views

pear mail queue report script?

Is there a pear mail queue reporting script that builds pretty charts and graphs from your MQ database? I have MQ set up on a cron job and I want to tie some reporting into my admin console.
0
votes
1answer
35 views

Trouble using PEAR's Mail_Queue

I'm trying to implement PEAR's Mail_Queue package to queue some emails for a web application. I've used the documentation at ...
0
votes
2answers
45 views

exim mail queue is full of spam

I want to know which script of my server has a hole, and it's adding to the queue 4000 mails / hour. This is my mail queue screenshot: http://www.diigo.com/item/image/1i66c/8mav And this is a single ...
0
votes
4answers
458 views

sending large amounts of email in a loop

Hi all I have a system that sends lots of emails reports ( about 500+ emails once a day). I am not a spammer :) It's not really big count of e-mails, but they are sending in a loop and I often get ...
0
votes
2answers
104 views

PEAR Mail_Queue stops on recipient bad syntax

i'm using PEAR Mail_Queue, everything works great, except when i'm trying to send emails to "bad" recipients (bad syntax like "òla@test.com", "uuu@test,com" , "test@test.com.com") When the queue ...
0
votes
2answers
429 views

PHP PEAR Container error

Allrighty, it's the first time I ask a question here. My problem is as awkward as it is difficult to get to the bottom of. Story goes like this: I have this little system, which sends alot of e-mail ...
0
votes
1answer
106 views

Error in PHP Mail_Queue PEAR library

I'm getting the following error when trying to use the PHP Mail_Queue PEAR library: Declaration of Mail_Queue::isError() should be compatible with that of PEAR::isError() PHP 5.2.3, Mail Queue ...
0
votes
2answers
145 views

Database structure question…Emails scheduled for delivery?

I am trying to implement a system where emails to large (or small) groups of people are scheduled to be delivered by a cron job (instead of in a loop, while the user is waiting for them to finish ...
0
votes
2answers
360 views

Using MDB2 and MySQLi together (Good or bad?)

I want to use the PEAR Mail_queue package which requires the PEAR MDB2 package for database abstraction. I currently use MySQLi for all my database queries and dont really desire using MDB2. Would ...
0
votes
3answers
1k views

Best way to send 10,000+ emails with PEAR/Mail_Queue

I have a cron which generates the whole mail info and puts in a database table using $mail_queue->put(.....) with an option to delete emails after they're sent. Here's where I need a little help: ...
0
votes
2answers
275 views

PEAR Mail_Queue sending duplicate emails

Here's a couple of questions: Is mail_queue->put supposed to insert a message twice in the database? The only differences are the time_to_send value and the user_id. This is what I get for a single ...