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

395 Views Asked by At

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 : <strong> Could not execute : /var/qmail/bin/sendmail </strong>

This seems the linux path setting, what, how and where do I have to modify for windows setting, I am having no idea what to do.

Tough the db is showing the mail as send.

enter image description here

1

There are 1 best solutions below

3
On

For it to even be looking at that path means it's being told to send via qmail, which you won't have on Windows. You need to alter the code that calls PHPMailer so that it's told to send either via a local mail server (using isMail()), or directly via SMTP using isSMTP(), along with appropriate login credentials. It sounds like this is a misconfiguration in EmailQueue, so I suggest you contact them for support - PHPMailer is only doing what it's told.