def _SendFYIBisectEmail(job, message): """Sends an email to chrome-performance-monitoring-alerts with FYI results.""" email_data = email_template.GetBisectFYITryJobEmailReport(job, message) mail.send_mail(sender='*****@*****.**', to='*****@*****.**', subject=email_data['subject'], body=email_data['body'], html=email_data['html'])
def _SendFYIBisectEmail(job, message): """Sends an email to auto-bisect-team about FYI bisect results.""" email_data = email_template.GetBisectFYITryJobEmailReport(job, message) mail.send_mail(sender='*****@*****.**', to='*****@*****.**', subject=email_data['subject'], body=email_data['body'], html=email_data['html'])