Hi@Shashl,
You can use python script in your CentOS system to set email notification. You can use the SMTP module in your script.
# send mail
import smtplib,getpass
sender='abc@gmail.com'
receiver=['xyz@gmail.com','zzz@gmail.com']
password='xxxxx'
smtpserver=smtplib.SMTP("smtp.gmail.com",587)
smtpserver.ehlo()
smtpserver.starttls()
smtpserver.ehlo
smtpserver.login(sender,password)
msg='Subject:Demo\nThis is a demo'
smtpserver.sendmail(sender,receiver,msg)
print('Sent')
smtpserver.close()