We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2c979 commit b0c3156Copy full SHA for b0c3156
lib/commands/start.js
@@ -61,6 +61,11 @@ class StartCommand extends Command {
61
return this.ui.run(processInstance.enable(), 'Enabling instance startup on server boot');
62
}).then(() => {
63
this.ui.log(`You can access your blog at ${instance.config.get('url')}`, 'cyan');
64
+
65
+ if (instance.config.get('mail.transport') === 'Direct') {
66
+ this.ui.log('\nGhost uses direct mail by default', 'green');
67
+ this.ui.log('To set up an alternative email method read our docs at https://docs.ghost.org/docs/mail-config', 'green');
68
+ }
69
});
70
71
}
0 commit comments