SMTP
The smtp
platform allows you to deliver notifications from Open Peer Power to an e-mail recipient.
To enable notification by e-mail in your installation, add the following to your configuration.yaml
file:
A sample configuration entry for Google Mail.
Keep in mind that Google has some extra layers of protection which need special attention (Hint: ‘Less secure apps’). If you have 2-step verification enabled on your Google account, you’ll need to use an application-specific password.
To use the SMTP notification, refer to it in an automation or script like in this example:
The optional images
field adds in-line image attachments to the email. This sends a text/HTML multi-part message instead of the plain text default.
The optional html
field makes a custom text/HTML multi-part message, allowing total freedom for sending rich html emails. In them, if you need to attach images, you can pass both arguments (html
and images
), the attachments will be joined with the basename of the images, so they can be included in the html page with src="cid:image_name.ext"
.
Obviously, this kind of complex html email reporting is done much more conveniently using Jinja2 templating from an AppDaemon app, for example.
This platform is fragile and not able to catch all exceptions in a smart way because of the large number of possible configuration combinations.
A combination that will work properly is port 587 and STARTTLS. It’s recommended to enable STARTTLS, if possible.
Keep in mind that if the password contains a colon, it needs to be wrapped in apostrophes in the configuration.yaml
file.
For Google Mail (smtp.gmail.com) an additional step in the setup process is needed. Google has some extra layers of protection which need special attention. By default, the usage by external applications, especially scripts, is limited. Visit the Less secure apps page and enable it.
To use notifications, please see the getting started with automation page.