Use any sender as Ghost email sender

If you don't set anything Ghost will use something like ghost@localhost. That does not only look bad, it can also lead to rejection through your email dispatcher like Mandrill.

To prevent this and use your own, simply add the following into your config.js:

production: {
    mail: {
        fromaddress: 'youraddress@domain.tld'
    }
}