views:

16

answers:

2

is there any option to sendmail linux command on particular time .

I want make or sending email on particular time .

+1  A: 

You can setup a cron job to execute sendmail at any particular time.

codaddict
that i can do .. is there any option ?
Tree
A: 

You can use the at command to execute the command once at a later time. One advantage of at over cron is that at uses your environment instead of cron which uses a very basic environment.

glenn jackman
You can set any environment you want for a cron job.
Dennis Williamson
Yes, but you have to explicitly set it. You get your current environment by default with `at`
glenn jackman