+
+
![{{ $page.Title }}]()
+
+```
+
+You can use `{{- with $page.Params.images -}}` to open a `with` block in a list.
+
+You can set a variable to whatever the `with` block is referencing by immediately doing a `{{- $images:= . -}}`.
+
+The `-` on both sides trims any whitespace in the outputted HTML.
+
+## Email
+
+### Sending email with AWS SES
+
+You can use SES to send emails for software/clients that request email credentials (commento is one example).
+
+The main documentation page is here:
.
+
+A IAM user for sending emails is:
+
+```yaml
+IAM User: ses-smtp-user.20200505-212533
+SMTP Username: AKIA23D4RF6O2UKDMTCW
+SMTP Password: BIx9F8PR7g1K9oObHQGElHmf3nIjCkUhJpu4GP3O3/Yq
+```
+
+You should verify an email (or domain ) that you own with AWS: .
+
+An example `docker-compose` for compose app sending emails with SES is here: .
diff --git a/tasks.todo b/tasks.todo
index ad66c7d..b6c3ca4 100644
--- a/tasks.todo
+++ b/tasks.todo
@@ -3,7 +3,7 @@ Projects:
Tasks:
Images:
✔ Add image to homepage + document @done (5/5/2020, 4:09:20 AM)
- ☐ Add image to post + document
+ ✔ Add image to post + document @done (5/5/2020, 7:32:50 PM)
Animate:
☐ Add animate on scroll
@@ -27,3 +27,13 @@ Tasks:
Sidebar:
☐ Add a table of contents to the side.
+
+ Content:
+ ☐ Add a series taxonomy
+ Notes:
+ Needs it's own page listing all series
+ Each series needs its own page with image and intro + TOC (https://simpleisbetterthancomplex.com/series/beginners-guide/1.11/)
+
+ Email:
+ ☐ Configure AWS SES for sending emails with commento.
+ Document the steps + links to AWS documentation.