mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-06-07 05:29:32 +02:00
Update main.wasp
This commit is contained in:
parent
10954b8a03
commit
c635e8a9a3
@ -27,7 +27,7 @@ app OpenSaaS {
|
|||||||
email: {
|
email: {
|
||||||
fromField: {
|
fromField: {
|
||||||
name: "Open SaaS App",
|
name: "Open SaaS App",
|
||||||
// You must use the same email address that you configured your SendGrid account to send out emails with!
|
// When using SendGrid, you must use the same email address that you configured your account to send out emails with!
|
||||||
email: "me@example.com"
|
email: "me@example.com"
|
||||||
},
|
},
|
||||||
emailVerification: {
|
emailVerification: {
|
||||||
@ -61,11 +61,15 @@ app OpenSaaS {
|
|||||||
client: {
|
client: {
|
||||||
rootComponent: import App from "@src/client/App",
|
rootComponent: import App from "@src/client/App",
|
||||||
},
|
},
|
||||||
|
|
||||||
emailSender: {
|
emailSender: {
|
||||||
provider: Dummy, // NOTE this is just for local development purposes. Use SendGrid in production.
|
// Note that the "Dummy" provider is just for local development purposes.
|
||||||
|
// Make sure to check the server logs for the confirmation email token (it will not be sent to an address)!
|
||||||
|
// Please use SendGrid in production. See: https://docs.opensaas.sh/guides/email-sending/
|
||||||
|
provider: Dummy,
|
||||||
defaultFrom: {
|
defaultFrom: {
|
||||||
name: "Open SaaS App",
|
name: "Open SaaS App",
|
||||||
// You must use the same email address that you configured your SendGrid account to send out emails with!
|
// When using SendGrid, you must use the same email address that you configured your account to send out emails with!
|
||||||
email: "me@example.com"
|
email: "me@example.com"
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user