Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

EbrahemSamer's avatar

How to send an email in a specific day Using PHP Native ?

I want to send email notification to user some day but I want do that even if the user is not using the website.

How to make my website send email automatic in some day ??

0 likes
2 replies
viorel's avatar

Hi,

You could do it using laravel's task scheduling and Carbon (for working with dates). https://laravel.com/docs/8.x/scheduling

For example, you create a job to send Happy Birthday emails. Then in the job, with the help of Carbon, you define the logic that on each year, on users b-day they get an email. All that it's left is creating a command and adding it to the comand Kernel.php.

PS: You'll also have to add an entry inside the crontab on your server as per the documentation.

Please or to participate in this conversation.