Reputation: 33
I have my timertrigger function like this, but it's not working, i want to send something from Monday to Friday at 6:00 PM
public static void Run(
[TimerTrigger("0 00 18 * * * Mon,Tues,Wed,Thurs,Fri")]TimerInfo myTimer,
ILogger log)
{
...
}
Upvotes: 0
Views: 94
Reputation: 33
forget about it, i figured out the answer. Correct cron expression is TimerTrigger("0 00 18 * * 1-5")
just in case someone needs it, greetings
Upvotes: 1