The below code snippet sends email with status. If I want to add another line break with text as Sent from Scheduler. What could be the possible way ?
def send_email(status,message):
date = str(datetime.now().date())[-5:].replace('-', '/')
yag.send(to=TO_EMAIL,subject="{} Rebuild Code: {}".format(date, status),contents=message)
logging.info("Mail Sent!")
Thanks!