예제 #1
0
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'])
예제 #2
0
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'])