Mohammad Kahfi Posted December 25, 2020 Share Posted December 25, 2020 Why is my email campaign not being sent to the client, even though I have set the cronjob every 5 minutes, and I think all the settings are correct. Is there a solution to solve the Email Campaign feature problem in whmcs 8.0? 0 Quote Link to comment Share on other sites More sharing options...
ClevelandErik Posted February 4, 2021 Share Posted February 4, 2021 What cron job do you have set to run every 5 minutes? The documentation also refers to a cron job that is tied to how often email campaigns are set ( a large campaign will send 50 emails with every cron job. Which cron job are you talking about? clearly not the daily cron job... Thanks! 0 Quote Link to comment Share on other sites More sharing options...
Durukan Bal Posted August 30, 2021 Share Posted August 30, 2021 Hello, When I ran the code below on my server, I saw that it was sending emails. Here are the sources. php -q /home/username/public_html/crons/cron.php do --EmailCampaigns https://docs.whmcs.com/Crons Best Regards. 0 Quote Link to comment Share on other sites More sharing options...
Durukan Bal Posted August 30, 2021 Share Posted August 30, 2021 3 hours ago, Durukan Bal said: Hello, When I ran the code below on my server, I saw that it was sending emails. Here are the sources. php -q /home/username/public_html/crons/cron.php do --EmailCampaigns https://docs.whmcs.com/Crons Best Regards. I did development, adding the commands separately is more efficient php -q /home/username/public_html/crons/cron.php do --EmailCampaigns >/dev/null 2>&1 php -q /home/username/public_html/crons/cron.php do --ProcessEmailQueue >/dev/null 2>&1 You can see the operations in detail by adding the -vvv parameter to the end of the commands. Example php -q /home/username/public_html/crons/cron.php do --ProcessEmailQueue -vvv 0 Quote Link to comment Share on other sites More sharing options...
hkhasankhan5 Posted July 3 Share Posted July 3 On 8/31/2021 at 2:54 AM, Durukan Bal said: I did development, adding the commands separately is more efficient php -q /home/username/public_html/crons/cron.php do --EmailCampaigns >/dev/null 2>&1 php -q /home/username/public_html/crons/cron.php do --ProcessEmailQueue >/dev/null 2>&1 You can see the operations in detail by adding the -vvv parameter to the end of the commands. Example php -q /home/username/public_html/crons/cron.php do --ProcessEmailQueue -vvv How to increase the process limit from 25 to 100? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.