Resolved! Schedule job script to get field value from user table
I've created birthday (u_birthday) field in user table (sys_user) which stores users birth date. I want to send emails to the users whose birthday is in this month only. var users = new GlideRecord('sys_user');users.addActiveQuery();users.query();wh...