REDOUANE Posted May 9, 2022 Share Posted May 9, 2022 Hello Team, I am looking for a functionality, that make us send an Email "Other Product/Service Welcome Email" after 2min or 5min, is there a way to do it by a Cron just for this Email Template ? Thank you. 0 Quote Link to comment Share on other sites More sharing options...
REDOUANE Posted May 19, 2022 Author Share Posted May 19, 2022 Hello Team, Please, if there any answer or just a road to how to get a solution for this aspect. Thank you. 0 Quote Link to comment Share on other sites More sharing options...
brianoz Posted May 29, 2022 Share Posted May 29, 2022 You would have to save the email somehow (in a temporary file or database table) then come back and send it later. I don't know of any built-in way to do that, sorry, I suspect you'll need to write some code. It is possible there's a module somewhere for this. Mailchimp will send delayed emails after signup. If I'm right in thinking you want to send something after signup is done, hoping it's more likely to be read, I'd think a longer delay might work better. Mailchimp can be setup to send a series of emails, which might be helpful - basically you can send emails answering questions people might have after a day or so, or things they should remember to do. You could also advertise services in these, but for the emails to be seen as helpful they do need to have some sort of useful advice, not just be a product ad. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 29, 2022 Share Posted May 29, 2022 8 hours ago, brianoz said: You would have to save the email somehow (in a temporary file or database table) then come back and send it later. I don't know of any built-in way to do that, sorry, I suspect you'll need to write some code. It is possible there's a module somewhere for this. if you know the templated email is going to be sent automatically, maybe an EmailPreSend hook that intercepts that email before it's sent, sleeps for x minutes (php) and then allows it to be sent... or if it's not sent automatically, then a hook that uses the SendEmail APi to send it after x minutes... as the other brian suggested (you can't have too many brian's lol), if an existing solution doesn't exist, you might need to get a developer in to code this for you (that's not one for me before you ask!). 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.