/usr/share/check_mk/notifications/mail is in check-mk-server 1.2.6p12-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 | #!/usr/bin/python
# HTML Email
# Bulk: yes
# +------------------------------------------------------------------+
# | ____ _ _ __ __ _ __ |
# | / ___| |__ ___ ___| | __ | \/ | |/ / |
# | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
# | | |___| | | | __/ (__| < | | | | . \ |
# | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
# | |
# | Copyright Mathias Kettner 2013 mk@mathias-kettner.de |
# +------------------------------------------------------------------+
#
# This file is part of Check_MK.
# The official homepage is at http://mathias-kettner.de/check_mk.
#
# check_mk is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation in version 2. check_mk is distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
# out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more de-
# ails. You should have received a copy of the GNU General Public
# License along with GNU Make; see the file COPYING. If not, write
# to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301 USA.
# Argument 1: Full system path to the pnp4nagios index.php for fetching the graphs. Usually auto configured in OMD.
# Argument 2: HTTP-URL-Prefix to open Multisite. When provided, several links are added to the mail.
# Example: http://myserv01/prod
#
# This script creates a nifty HTML email in multipart format with
# attached graphs and such neat stuff. Sweet!
import os, re, sys, subprocess
try:
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.application import MIMEApplication
from email.mime.image import MIMEImage
except ImportError:
# python <2.5 compat
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
from email.MIMEImage import MIMEImage
from email.MIMEBase import MIMEBase
from email import Encoders
MIMEApplication = None
tmpl_head_html = '''
<html>
<head>
<title>$SUBJECT$</title>
<style>
body {
background-color: #ffffff;
padding: 5px;
font-family: arial,helvetica,sans-serif;
font-size: 10px;
}
table {
border-spacing: 0px;
border-collapse: collapse;
margin: 5px 0 0 0;
padding: 0;
width: 100%;
color: black;
empty-cells: show;
}
table th {
font-weight: normal;
border-right: 1px solid #cccccc;
background-color: #999999;
text-align: center;
color: #ffffff;
vertical-align: middle;
font-size: 9pt;
height: 14px;
}
table th:last-child {
border-right-style: none;
}
table tr > td {
border-right: 1px solid #cccccc;
padding: 2px 4px;
height: 22px;
vertical-align: middle;
}
table tr td:last-child {
border-right-style: none;
}
table a {
text-decoration: none;
color: black;
}
table a:hover {
text-decoration: underline;
}
table tr td {
padding-bottom: 4px;
padding: 4px 5px 2px 5px;
text-align: left;
height: 16px;
line-height: 14px;
vertical-align: top;
font-size: 9pt;
}
table tr td.left {
width: 10%;
white-space: nowrap;
vertical-align: top;
padding-right: 20px;
}
table tr.even0 td.left {
background-color: #bbbbbb;
}
table tr.odd0 td.left {
background-color: #cccccc;
}
tr.odd0 { background-color: #eeeeee; }
tr.even0 { background-color: #dddddd; }
td.odd0 { background-color: #eeeeee; }
td.even0 { background-color: #dddddd; }
tr.odd1 { background-color: #ffffcc; }
tr.even1 { background-color: #ffffaa; }
tr.odd2 { background-color: #ffcccc; }
tr.even2 { background-color: #ffaaaa; }
tr.odd3 { background-color: #ffe0a0; }
tr.even3 { background-color: #ffefaf; }
.stateOK, .stateUP {
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
font-weight: bold;
background-color: #0b3; color: #ffffff;
}
.stateWARNING {
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
font-weight: bold;
background-color: #ffff00; color: #000000;
}
.stateCRITICAL, .stateDOWN {
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
font-weight: bold;
background-color: #ff0000; color: #ffffff;
}
.stateUNKNOWN, .stateUNREACHABLE {
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
font-weight: bold;
background-color: #ff8800; color: #ffffff;
}
.statePENDING {
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
font-weight: bold;
background-color: #888888; color: #ffffff;
}
.stateDOWNTIME {
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
font-weight: bold;
background-color: #00aaff; color: #ffffff;
}
td.graphs {
width: 617px;
padding: 10px;
}
img {
margin-right: 10px;
}
img.nofloat {
display: block;
margin-bottom: 10px;
}
table.context {
border-collapse: collapse;
}
table.context td {
border: 1px solid #888;
padding: 3px 8px;
}
</style>
</head>
<body>
<table>'''
tmpl_foot_html = '''</table>
</body>
</html>'''
# Elements to be put into the mail body. Columns:
# 1. Name
# 2. "both": always, possible, "host": only for hosts, or "service": only for service notifications
# 3. True -> always enabled, not configurable, False: optional
# 4. Title
# 5. Text template
# 6. HTML template
body_elements = [
( "hostname", "both", True, "Host",
"$HOSTNAME$ ($HOSTALIAS$)",
"$LINKEDHOSTNAME$ ($HOSTALIAS$)" ),
( "servicedesc", "service", True, "Service",
"$SERVICEDESC$",
"$LINKEDSERVICEDESC$" ),
( "event", "both", True, "Event",
"$EVENT_TXT$",
"$EVENT_HTML$", ),
# Elements for both host and service notifications
( "address", "both", False, "Address",
"$HOSTADDRESS$",
"$HOSTADDRESS$", ),
( "abstime", "both", False, "Date / Time",
"$LONGDATETIME$",
"$LONGDATETIME$", ),
# Elements only for host notifications
( "reltime", "host", False, "Relative Time",
"$LASTHOSTSTATECHANGE_REL$",
"$LASTHOSTSTATECHANGE_REL$",),
( "output", "host", True, "Plugin Output",
"$HOSTOUTPUT$",
"$HOSTOUTPUT$",),
( "ack_author", "host", False, "Acknowledge Author",
"$HOSTACKAUTHORNAME$",
"$HOSTACKAUTHORNAME$",),
( "ack_comment", "host", False, "Acknowledge Comment",
"$HOSTACKCOMMENT$",
"$HOSTACKCOMMENT$",),
( "perfdata", "host", False, "Performance Data",
"$HOSTPERFDATA$",
"$HOSTPERFDATA$",),
# Elements only for service notifications
( "reltime", "service", False, "Relative Time",
"$LASTSERVICESTATECHANGE_REL$",
"$LASTSERVICESTATECHANGE_REL$",),
( "output", "service", True, "Plugin Output",
"$SERVICEOUTPUT$",
"$SERVICEOUTPUT$",),
( "longoutput", "service", False, "Additional Output",
"$LONGSERVICEOUTPUT$",
"$LONGSERVICEOUTPUT$",),
( "ack_author", "service", False, "Acknowledge Author",
"$SERVICEACKAUTHOR$",
"$SERVICEACKAUTHOR$",),
( "ack_comment", "service", False, "Acknowledge Comment",
"$SERVICEACKCOMMENT$",
"$SERVICEACKCOMMENT$",),
( "perfdata", "service", False, "Performance Data",
"$HOSTPERFDATA$",
"$HOSTPERFDATA$",),
( "perfdata", "service", False, "Performance Data",
"$SERVICEPERFDATA$",
"$SERVICEPERFDATA$",),
# Debugging
( "context", "both", False, "Complete variable list",
"$CONTEXT_ASCII$",
"$CONTEXT_HTML$",
)
]
tmpl_host_subject = 'Check_MK: $HOSTNAME$ - $EVENT_TXT$'
tmpl_service_subject = 'Check_MK: $HOSTNAME$/$SERVICEDESC$ $EVENT_TXT$'
opt_debug = '-d' in sys.argv
bulk_mode = '--bulk' in sys.argv
class GraphException(Exception):
pass
def substitute_context(template, context):
# First replace all known variables
for varname, value in context.items():
template = template.replace('$'+varname+'$', value)
# Debugging of variables. Create content only on demand
if "$CONTEXT_ASCII$" in template or "$CONTEXT_HTML$" in template:
template = replace_variable_context(template, context)
# Remove the rest of the variables and make them empty
template = re.sub("\$[A-Z_][A-Z_0-9]*\$", "", template)
return template
def replace_variable_context(template, context):
ascii_output = ""
html_output = "<table class=context>\n"
elements = context.items()
elements.sort()
for varname, value in elements:
ascii_output += "%s=%s\n" % (varname, value)
html_output += "<tr><td class=varname>%s</td><td class=value>%s</td></tr>\n" % (
varname, encode_entities(value))
html_output += "</table>\n"
return template.replace("$CONTEXT_ASCII$", ascii_output).replace("$CONTEXT_HTML$", html_output)
def encode_entities(text):
return text.replace("&", "&").replace("<", "<").replace(">", ">")
def multipart_mail(target, subject, from_address, reply_to, content_txt, content_html, attach = []):
m = MIMEMultipart('related', _charset='utf-8')
alt = MIMEMultipart('alternative')
# The plain text part
txt = MIMEText(content_txt, 'plain', _charset='utf-8')
alt.attach(txt)
# The html text part
html = MIMEText(content_html, 'html', _charset='utf-8')
alt.attach(html)
m.attach(alt)
# Add all attachments
for what, name, contents, how in attach:
if what == 'img':
part = MIMEImage(contents, name = name)
else:
if MIMEApplication != None:
part = MIMEApplication(contents, name = name)
else:
# python <2.5 compat
part = MimeBase('application', 'octet-stream')
part.set_payload(contents)
Encoders.encode_base64(part)
part.add_header('Content-ID', '<%s>' % name)
# how must be inline or attachment
part.add_header('Content-Disposition', how, filename = name)
m.attach(part)
m['Subject'] = subject
m['To'] = target
# Set a few configurable headers
if from_address:
m['From'] = from_address
if reply_to:
m['Reply-To'] = reply_to
return m
def send_mail(m, target, from_address):
cmd = ["/usr/sbin/sendmail"]
if from_address:
cmd += ['-f', from_address]
cmd += [ "-i", target]
try:
p = subprocess.Popen(cmd, stdin = subprocess.PIPE)
except OSError:
raise Exception("Failed to send the mail: /usr/sbin/sendmail is missing")
p.communicate(m.as_string())
return True
def fetch_pnp_data(context, params):
try:
# Autodetect the path in OMD environments
path = "%s/share/pnp4nagios/htdocs/index.php" % context['OMD_ROOT'].encode('utf-8')
php_save_path = "-d session.save_path=%s/tmp/php/session" % context['OMD_ROOT'].encode('utf-8')
env = 'REMOTE_USER="check-mk" SKIP_AUTHORIZATION=1'
except:
# Non-omd environment - use plugin argument 1
path = context.get('PARAMETER_1', '')
php_save_path = "" # Using default path
skip_authorization = False
env = 'REMOTE_USER="%s"' % context['CONTACTNAME'].encode('utf-8')
if not os.path.exists(path):
raise GraphException('Unable to locate pnp4nagios index.php (%s)' % path)
return os.popen('%s php %s %s "%s"' % (env, php_save_path, path, params)).read()
def fetch_num_sources(context):
svc_desc = context['WHAT'] == 'HOST' and '_HOST_' or context['SERVICEDESC']
infos = fetch_pnp_data(context, '/json?host=%s&srv=%s&view=0' %
(context['HOSTNAME'].encode('utf-8'), svc_desc.encode('utf-8')))
if not infos.startswith('[{'):
raise GraphException('Unable to fetch graph infos: %s' % extract_graph_error(infos))
return infos.count('source=')
def fetch_graph(context, source, view = 1):
svc_desc = context['WHAT'] == 'HOST' and '_HOST_' or context['SERVICEDESC']
graph = fetch_pnp_data(context, '/image?host=%s&srv=%s&view=%d&source=%d' %
(context['HOSTNAME'], svc_desc.encode('utf-8'), view, source))
if graph[:8] != '\x89PNG\r\n\x1a\n':
raise GraphException('Unable to fetch the graph: %s' % extract_graph_error(graph))
return graph
def extract_graph_error(output):
lines = output.splitlines()
for nr, line in enumerate(lines):
if "Please check the documentation for information about the following error" in line:
return lines[nr+1]
return output
def construct_content(context):
# A list of optional information is configurable via the parameter "elements"
# (new configuration style)
if "PARAMETER_ELEMENTS" in context:
elements = context["PARAMETER_ELEMENTS"].split()
else:
elements = [ "perfdata", "graph", "abstime", "address", "longoutput" ]
# If argument 2 is given (old style) or the parameter url_prefix is set (new style),
# we know the base url to the installation and can add
# links to hosts and services. ubercomfortable!
if context.get('PARAMETER_2'):
url_prefix = context["PARAMETER_2"]
elif context.get("PARAMETER_URL_PREFIX"):
url_prefix = context["PARAMETER_URL_PREFIX"]
else:
url_prefix = None
if url_prefix:
base_url = url_prefix.rstrip('/')
if base_url.endswith("/check_mk"):
base_url = base_url[:-9]
host_url = base_url + context['HOSTURL']
context['LINKEDHOSTNAME'] = '<a href="%s">%s</a>' % (host_url, context['HOSTNAME'])
context['HOSTLINK'] = '\nLink: %s' % host_url
if context['WHAT'] == 'SERVICE':
service_url = base_url + context['SERVICEURL']
context['LINKEDSERVICEDESC'] = '<a href="%s">%s</a>' % (service_url, context['SERVICEDESC'])
context['SERVICELINK'] = '\nLink: %s' % service_url
else:
context['LINKEDHOSTNAME'] = context['HOSTNAME']
context['LINKEDSERVICEDESC'] = context.get('SERVICEDESC', '')
context['HOSTLINK'] = ''
context['SERVICELINK'] = ''
# Create a notification summary in a new context variable
# Note: This code could maybe move to cmk --notify in order to
# make it available every in all notification scripts
# We have the following types of notifications:
# - Alerts OK -> CRIT
# NOTIFICATIONTYPE is "PROBLEM" or "RECOVERY"
# - Flapping Started, Ended
# NOTIFICATIONTYPE is "FLAPPINGSTART" or "FLAPPINGSTOP"
# - Downtimes Started, Ended, Cancelled
# NOTIFICATIONTYPE is "DOWNTIMESTART", "DOWNTIMECANCELLED", or "DOWNTIMEEND"
# - Acknowledgements
# NOTIFICATIONTYPE is "ACKNOWLEDGEMENT"
# - Custom notifications
# NOTIFICATIONTYPE is "CUSTOM"
html_info = ""
html_state = '<span class="state$@STATE$">$@STATE$</span>'
notification_type = context["NOTIFICATIONTYPE"]
if notification_type in [ "PROBLEM", "RECOVERY" ]:
txt_info = "$PREVIOUS@HARDSHORTSTATE$ -> $@SHORTSTATE$"
html_info = '<span class="state$PREVIOUS@HARDSTATE$">$PREVIOUS@HARDSTATE$</span> → ' + \
html_state
elif notification_type.startswith("FLAP"):
if "START" in notification_type:
txt_info = "Started Flapping"
else:
txt_info = "Stopped Flapping ($@SHORTSTATE$)"
html_info = "Stopped Flapping (while " + html_state + ")"
elif notification_type.startswith("DOWNTIME"):
what = notification_type[8:].title()
txt_info = "Downtime " + what + " ($@SHORTSTATE$)"
html_info = "Downtime " + what + " (while " + html_state + ")"
elif notification_type == "ACKNOWLEDGEMENT":
txt_info = "Acknowledged ($@SHORTSTATE$)"
html_info = "Acknowledged (while " + html_state + ")"
elif notification_type == "CUSTOM":
txt_info = "Custom Notification ($@SHORTSTATE$)"
html_info = "Custom Notification (while " + html_state + ")"
else:
txt_info = notification_type # Should neven happen
if not html_info:
html_info = txt_info
txt_info = substitute_context(txt_info.replace("@", context["WHAT"]), context)
html_info = substitute_context(html_info.replace("@", context["WHAT"]), context)
context["EVENT_TXT"] = txt_info
context["EVENT_HTML"] = html_info
attachments = []
# Compute the subject of the mail
if context['WHAT'] == 'HOST':
tmpl = context.get('PARAMETER_HOST_SUBJECT') or tmpl_host_subject
context['SUBJECT'] = substitute_context(tmpl, context)
else:
tmpl = context.get('PARAMETER_SERVICE_SUBJECT') or tmpl_service_subject
context['SUBJECT'] = substitute_context(tmpl, context)
# Prepare the mail contents
content_txt, content_html = render_elements(context, elements)
# Add PNP Graph
if "graph" in elements:
# Fetch graphs for this object. It first tries to detect how many sources
# are available for this object. Then it loops through all sources and
# fetches retrieves the images. If a problem occurs, it is printed to
# stderr (-> notify.log) and the graph is not added to the mail.
try:
num_sources = fetch_num_sources(context)
except GraphException, e:
graph_error = extract_graph_error(str(e))
if '.xml" not found.' not in graph_error:
sys.stderr.write('Unable to fetch number of graphs: %s\n' % graph_error)
num_sources = 0
graph_code = ''
for source in range(0, num_sources):
try:
content = fetch_graph(context, source)
except GraphException, e:
sys.stderr.write('Unable to fetch graph: %s\n' % e)
continue
if context['WHAT'] == 'HOST':
svc_desc = '_HOST_'
else:
svc_desc = context['SERVICEDESC'].replace(' ', '_')
# replace forbidden windows characters < > ? " : | \ / *
for token in ["<", ">", "?", "\"", ":", "|", "\\", "/", "*"] :
svc_desc = svc_desc.replace(token, "x%s" % ord(token))
name = '%s-%s-%d.png' % (context['HOSTNAME'], svc_desc, source)
attachments.append(('img', name, content, 'inline'))
cls = ''
if context.get('PARAMETER_NO_FLOATING_GRAPHS'):
cls = ' class="nofloat"'
graph_code += '<img src="cid:%s"%s />' % (name, cls)
if graph_code:
content_html += (
'<tr><th colspan=2>Graphs</th></tr>'
'<tr class="even0"><td colspan=2 class=graphs>%s</td></tr>' % graph_code
)
content_html = substitute_context(tmpl_head_html, context) + \
content_html + \
substitute_context(tmpl_foot_html, context)
return content_txt, content_html, attachments
def render_elements(context, elements):
what = context['WHAT'].lower()
even = "even"
tmpl_txt = ""
tmpl_html = ""
for name, whence, forced, title, txt, html in body_elements:
if (whence == "both" or whence == what) and \
(forced or name in elements):
tmpl_txt += "%-20s %s\n" % (title + ":", txt)
tmpl_html += '<tr class="%s0"><td class=left>%s</td><td>%s</td></tr>' % (
even, title, html)
even = even == "even" and "odd" or "even"
return substitute_context(tmpl_txt, context), \
substitute_context(tmpl_html, context)
def read_bulk_contexts():
parameters = {}
contexts = []
in_params = True
# First comes a section with global variables
for line in sys.stdin:
line = line.strip()
if line:
key, value = line.split("=", 1)
value = value.replace("\1", "\n")
if in_params:
parameters[key] = value
else:
context[key] = value
else:
in_params = False
context = {}
contexts.append(context)
return parameters, contexts
def main():
if bulk_mode:
attachments = []
content_txt = ""
content_html = ""
parameters, contexts = read_bulk_contexts()
hosts = set([])
for context in contexts:
context.update(parameters)
txt, html, att = construct_content(context)
content_txt += txt
content_html += html
attachments += att
mailto = context['CONTACTEMAIL'] # Assume the same in each context
subject = context['SUBJECT']
hosts.add(context["HOSTNAME"])
# Create a useful subject
hosts = list(hosts)
if len(contexts) > 1:
if len(hosts) == 1:
subject = "Check_MK: %d notifications for %s" % (len(contexts), hosts[0])
else:
subject = "Check_MK: %d notifications for %d hosts" % (
len(contexts), len(hosts))
else:
# gather all options from env
context = dict([
(var[7:], value.decode("utf-8"))
for (var, value)
in os.environ.items()
if var.startswith("NOTIFY_")])
content_txt, content_html, attachments = construct_content(context)
mailto = context['CONTACTEMAIL']
subject = context['SUBJECT']
if not mailto: # e.g. empty field in user database
sys.stdout.write("Cannot send HTML email: empty destination email address")
sys.exit(2)
# Create the mail and send it
from_address = context.get("PARAMETER_FROM")
reply_to = context.get("PARAMETER_REPLY_TO")
m = multipart_mail(mailto, subject, from_address, reply_to, content_txt, content_html, attachments)
send_mail(m, mailto, from_address)
main()
|