• Resolved marcelmarcelm

    (@marcelmarcelm)


    Hi,

    I would like to request 2 features for this awesome plugin:

    1) Be able to requeue mails from the ‘sending errors’ tab. Now I have to manually move the files on my server. A simple button ‘requeue all’ and a per-mail button that moves the file(s) on the server would really help.

    2) About 1 out of 10 mails fail to send. I would be nice if there was a retry schedule. For example, retry to send the mails 2 times in next cron runs before moving it to the failed folder.

    3) A nice to have but not really that important for me would be a log of succesfully send mails. I think the plugin now deletes the files on the server, if they were to be placed in a ‘completed’ folder and there was a view of this completed folder (maybe last 50 completed mails for example) that would be really nice.

    These are the things that I consider a huge improvement to the plugin after having used it succesfully for a couple days.

Viewing 1 replies (of 1 total)
  • 1) In case anyone else is wondering to requeue you can type something like this in SSH (varies). You need to move the files from failed sent to the email queue.

    cd /var/www/html/wp-content/uploads/smtp-mailing-queue/invalid
    Move to the directory – your directory might be different than this.

    pwd
    You want to verify and make sure you’re at the directory. pwd shows current path.

    sudo find . -maxdepth 1 -exec mv {} .. \;
    Again make sure you’re in the correct directory. This will move all files from current directory to one level up. It should show an error but that’s ok. Also a good idea to back up regularly.

    2) Emails seem to fail to send if there is another cronjob being ran at the same time. I don’t know why it does this but you should set cronjob at 60secs or so and process queue everytime it gets stuck. Occasionally you want to check and make sure it’s processing the queue.

    3) Yeah that would be ideal but this plugin has a few other issues that need to be fixed.

    • This reply was modified 6 years, 5 months ago by kimsf.
    • This reply was modified 6 years, 5 months ago by kimsf.
    • This reply was modified 6 years, 5 months ago by kimsf.
Viewing 1 replies (of 1 total)
  • The topic ‘Feature requests: retry schedule, requeue mails and processed mails log’ is closed to new replies.