Questions tagged [mail-queue]

38 questions
1
vote
1 answer

EmailQueue not sending mail: "cannot find the path specified" in Windows

I am using the emailqueue by lorenzoherrera, I have installed the setup in the windows 7 and executed the script and getting the error The system cannot find the path specified PHPMailer error : Could not execute : /var/qmail/bin/sendmail…
user3752338
1
vote
1 answer

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.
robr
  • 468
  • 6
  • 16
1
vote
0 answers

Sending emails from postfix?

I am working on a project where I need to create a SMTP server to send and receive emails. I've configured a server on ubuntu using postfix. It's working completely fine. I can send email and also can receive emails. But the problem is when I try to…
Rahul Gautam
  • 1,121
  • 3
  • 11
  • 18
1
vote
1 answer

Laravel 4.2 Email::queue with assets

Simple, I am trying to queue an email using services beanstalkd and supervisord like so: Mail::queue('emails.congratulations', $user, function($message) use($user) { $message->to($user['email'], $user['name']) …
1
vote
1 answer

Linux shell script to remove 2 day old frozen emails from exim queue

I want to put shell script under the cron job which will do following: 1) Removes 2 days old email messages which are in the Exim queue and are bounced/frozen messages, which won't be delivered. Script must not remove messages which are legitimate…
Besik
  • 43
  • 7
1
vote
0 answers

How do I specify the e-mail I want to send to when using PEAR Mail Queue's sendMailById() method?

I'm using PEAR Mail_Queue for sending out newsletters. I have struggled so much with PEAR Mail, but I'm finally at a point where everything seems to work perfect. I'm keeping the queue and using the callback functionality to update my log. Now I…
1
vote
3 answers

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: What is the best way to send the emails after I have…
RRStoyanov
  • 1,162
  • 1
  • 13
  • 23
0
votes
0 answers

PEAR mail_queue sending duplicate emails with qmail

I'm sending about 1000 emails each week with PEAR mail_queue to my users who wants to receive a newsletter. Some of my users are telling me they receive this letter 2 or 3 times each week, in the same minute. I have a cron job wich runs every 15…
Marm
  • 863
  • 2
  • 15
  • 30
0
votes
2 answers

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 email screenshot:…
Yakko Olè
  • 71
  • 1
  • 5
0
votes
1 answer

sendmail mailq sort by year regular expression, updated naming convention

Following up on this suggestion for a mailq sort, in our case we'd like to add the year in the sort, as this is a quarantine. How would you include the first character in the first column, which is the year? The first 0 from 001CJwkY1702541 is…
RobbieTheK
  • 178
  • 1
  • 11
0
votes
2 answers

PEAR Mail_Queue sending duplicate emails

Here are 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 message for one user: 1. user_id = 1,…
kari.patila
  • 1,071
  • 2
  • 15
  • 26
0
votes
4 answers

sending large amounts of email in a loop

I have a system that sends lots of emails reports ( about 500+ emails per day). I am not a spammer :) It's not really big amount of e-mails, but they are send in a loop and I often get this error "PHP Warning: mail(): Could not execute mail…
alagar
  • 134
  • 4
  • 11
0
votes
2 answers

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 finds a bad recipient it just stops, leaving all the…
NicolaPasqui
  • 1,112
  • 8
  • 17
0
votes
2 answers

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 invitations(not spam). So, being sensible, I don't…
Vlad
  • 1
  • 1
0
votes
0 answers

Shell script saving to file oddly

I've written a simple shell script. count=`mailq -v` var=$(mailq -v) echo "$var" > /home/xxxxxx/textis.txt It works fine and outputs the result of mailq to the txt file no problem. However when I add one line and change it to count=`mailq…
user1616338
  • 557
  • 1
  • 8
  • 24