Skip to content

Commit c635e8a

Browse files
committed
Update main.wasp
1 parent 10954b8 commit c635e8a

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

app/main.wasp

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ app OpenSaaS {
2727
email: {
2828
fromField: {
2929
name: "Open SaaS App",
30-
// You must use the same email address that you configured your SendGrid account to send out emails with!
30+
// When using SendGrid, you must use the same email address that you configured your account to send out emails with!
3131
3232
},
3333
emailVerification: {
@@ -61,11 +61,15 @@ app OpenSaaS {
6161
client: {
6262
rootComponent: import App from "@src/client/App",
6363
},
64+
6465
emailSender: {
65-
provider: Dummy, // NOTE this is just for local development purposes. Use SendGrid in production.
66+
// Note that the "Dummy" provider is just for local development purposes.
67+
// Make sure to check the server logs for the confirmation email token (it will not be sent to an address)!
68+
// Please use SendGrid in production. See: https://docs.opensaas.sh/guides/email-sending/
69+
provider: Dummy,
6670
defaultFrom: {
6771
name: "Open SaaS App",
68-
// You must use the same email address that you configured your SendGrid account to send out emails with!
72+
// When using SendGrid, you must use the same email address that you configured your account to send out emails with!
6973
7074
},
7175
},

0 commit comments

Comments
 (0)