blob: 81d8995e3fa435acdae7fa08b1394e871d9cc490 [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Provides a function for emailing an alert to a sheriff on duty."""
import logging
from google.appengine.api import mail
from dashboard import email_template
def EmailSheriff(sheriff, test, anomaly):
"""Sends an email to the sheriff on duty about the given anomaly.
Args:
sheriff: sheriff.Sheriff entity.
test: The graph_data.Test entity associated with the anomaly.
anomaly: The anomaly.Anomaly entity.
"""
receivers = email_template.GetSheriffEmails(sheriff)
if not receivers:
logging.warn('No email address for %s', sheriff)
return
anomaly_info = email_template.GetAlertInfo(anomaly, test)
mail.send_mail(sender='gasper-alerts@google.com',
to=receivers,
subject=anomaly_info['email_subject'],
body=anomaly_info['email_text'],
html=anomaly_info['email_html'] + anomaly_info['alerts_link'])