Allows scripts to send email to a preconfigured address.
Project description
notifymail allows scripts to send email to a preconfigured address. It is particularly useful for unattended and scheduled scripts to report their status to an administrator.
notifymail is designed to be very easy to install and use. I wrote it because I couldn’t figure out how to configure the built-in sendmail command to forward emails appropriately and I couldn’t get the similar ssmtp package to work.
Requirements
OS X or Linux
Python 2.7 or 3.4
An email account
Installation
$ pip install notifymail # or pip3 (for Python 3.x)
Configuration
You must know the SMTP settings of your email provider, which can typically looked up on your provider’s website. For example here are Gmail’s SMTP settings, obtained with a internet search for “gmail SMTP settings”:
Gmail SMTP Server: smtp.gmail.com
Gmail SMTP Port: 587 (for TLS)
Gmail SMTP Uses TLS? yes
Usually your SMTP username will be the same as your email address, and your SMTP password will be the same as your email password.
Once you have the settings in hand, run the notifymail.py --setup command:
$ notifymail.py --setup SMTP Server Hostname: smtp.gmail.com SMTP Server Port [465]: 587 SMTP Server Uses TLS (y/n) [n]: yes SMTP Username: robot@gmail.com SMTP Password: ******** From Address [robot@gmail.com]: robot@gmail.com From Name (optional) []: notifymail To Address: admin@example.com Verifying connection to SMTP server... OK
Usage
From the Command Line
$ echo "Hello World" | notifymail.py -s "Subject"
notifymail will read the message body from standard input and allow you to specify a subject line with the -s option. You may also specify a custom sender name using the --from-name option.
In Python 2 the encoding of the message body and all arguments is assumed to be UTF-8. In Python 3 the encoding of both is autodetected in the usual fashion.
Full usage information:
Usage: notifymail.py --setup | -s SUBJECT [-b BODY] [--from-name NAME] | --probe Options: -h, --help show this help message and exit --setup setup mail server configuration --probe check whether mail server is reachable -s SUBJECT, --subject=SUBJECT subject line. Required. -b BODY, --body=BODY body. Read from standard input if omitted. --from-name=NAME sender name. Overrides the default sender name.
From a Python Script
import notifymail notifymail.send('Subject', 'Hello World')
String arguments can be either Unicode strings or UTF-8 encoded bytestrings.
From a Non-Python Script
Just execute the notifymail command using your language’s normal API for running system commands.
For example, in Ruby:
require 'open3' Open3.popen3('notifymail.py', '-s', 'Subject') {|stdin, stdout, stderr, wait_thr| stdin.puts('Hello World!') stdin.close exit_code = wait_thr.value.to_i if exit_code != 0 raise "notifymail exited with error code #{exit_code}." end }
For example, in Java:
import java.io.*; try { Process notifymail = Runtime.getRuntime().exec(new String[] { "notifymail.py", "-s", "Subject" }); PrintStream stdin = new PrintStream( notifymail.getOutputStream(), /*autoFlush=*/false, "UTF-8"); stdin.println("Hello World!"); stdin.close(); int exitCode = notifymail.waitFor(); if (exitCode != 0) { throw new Exception("notifymail exited with error code " + exitCode + "."); } } catch (Exception e) { throw new RuntimeException("Unable to send email.", e); }
Limitations
The configured SMTP settings are stored in plaintext, including the SMTP password.
License
This code is provided under the MIT License.
Release Notes
1.1
Add support for Python 3.4. Remove support for Python 2.6.
Fix --from-name to actually work.
Fix --setup to not print usage info after completing setup.
1.0
Initial version.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file notifymail-1.1.tar.gz
.
File metadata
- Download URL: notifymail-1.1.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea9d5432e6e3461782db097e3943d9aa3d7dce961b2842590bb70a7a7fb3e220 |
|
MD5 | bcae678cb317549aed59707ea7790bfb |
|
BLAKE2b-256 | 184bb47a681834cea6da028e9aaee59691773309bea36c746209188607c36987 |