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