mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Don't return from sending welcome mail
closes #5675 - welcome mail is non-critical, invalid mail setups shouldn't interfere with setting up a blog
This commit is contained in:
parent
222ecc08b6
commit
2c29ae1ad2
1 changed files with 1 additions and 1 deletions
|
@ -269,7 +269,7 @@ authentication = {
|
|||
}]
|
||||
};
|
||||
|
||||
return mail.send(payload, {context: {internal: true}}).catch(function (error) {
|
||||
mail.send(payload, {context: {internal: true}}).catch(function (error) {
|
||||
errors.logError(
|
||||
error.message,
|
||||
'Unable to send welcome email, your blog will continue to function.',
|
||||
|
|
Loading…
Add table
Reference in a new issue