0

I am using tcpdf to generate the pdf file for employee salary , how can I sent automatically email employee salary (pdf)to end of the month

gopal
  • 17
  • 1
  • 7
  • 1
    This will help you http://stackoverflow.com/questions/18737407/how-to-create-cron-job-using-php – Eric Martinez Jun 12 '15 at 04:36
  • Setup the cron job to run "your php file" at end of every month. "Your php file" will include code to send email to all employees with their respective salary-slips. – Pranay Bhardwaj Jun 12 '15 at 06:41

1 Answers1

0

You can setup a cronjob to send the email every month end.

59 23 28-31 * * [ "$(date +%d -d tomorrow)" = "01" ] && /path/to/you/script.php

Source: https://blog.nexcess.net/2013/05/09/cron-job-for-the-last-day-of-the-month/

Nimeshka Srimal
  • 8,012
  • 5
  • 42
  • 57