Skip to content

Instantly share code, notes, and snippets.

@smockle
Last active August 29, 2015 14:09
Show Gist options
  • Save smockle/7e510cf897adc25e73a9 to your computer and use it in GitHub Desktop.
Save smockle/7e510cf897adc25e73a9 to your computer and use it in GitHub Desktop.
Amazon SES mail settings for Ghost's config.js
mail: {
from: process.env.SES_FROM_ADDRESS,
transport: 'SMTP',
host: process.env.SES_HOST,
options: {
service: 'SES',
from: process.env.SES_FROM_ADDRESS,
host: process.env.SES_HOST,
auth: {
user: process.env.SES_ACCESS_ID,
pass: process.env.SES_ACCESS_SECRET
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment