mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-05-19 16:50:09 +02:00
Fix MailGun in main.wasp to Mailgun (#221)
* Fix MailGun in main.wasp to Mailgun * fix
This commit is contained in:
parent
a348a85660
commit
a812b2d7ac
@ -73,7 +73,7 @@
|
||||
@@ -76,11 +74,11 @@
|
||||
// NOTE: "Dummy" provider is just for local development purposes.
|
||||
// Make sure to check the server logs for the email confirmation url (it will not be sent to an address)!
|
||||
// Once you are ready for production, switch to e.g. "SendGrid" or "MailGun" providers. Check out https://docs.opensaas.sh/guides/email-sending/ .
|
||||
// Once you are ready for production, switch to e.g. "SendGrid" or "Mailgun" providers. Check out https://docs.opensaas.sh/guides/email-sending/ .
|
||||
- provider: Dummy,
|
||||
+ provider: SendGrid,
|
||||
defaultFrom: {
|
||||
@ -84,7 +84,7 @@
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -345,7 +343,10 @@
|
||||
@@ -323,7 +321,10 @@
|
||||
email String? @unique
|
||||
username String? @unique
|
||||
lastActiveTimestamp DateTime @default(now())
|
||||
|
@ -75,7 +75,7 @@ app OpenSaaS {
|
||||
emailSender: {
|
||||
// NOTE: "Dummy" provider is just for local development purposes.
|
||||
// Make sure to check the server logs for the email confirmation url (it will not be sent to an address)!
|
||||
// Once you are ready for production, switch to e.g. "SendGrid" or "MailGun" providers. Check out https://docs.opensaas.sh/guides/email-sending/ .
|
||||
// Once you are ready for production, switch to e.g. "SendGrid" or "Mailgun" providers. Check out https://docs.opensaas.sh/guides/email-sending/ .
|
||||
provider: Dummy,
|
||||
defaultFrom: {
|
||||
name: "Open SaaS App",
|
||||
@ -420,4 +420,4 @@ entity File {=psl
|
||||
key String
|
||||
uploadUrl String
|
||||
psl=}
|
||||
//#endregion
|
||||
//#endregion
|
||||
|
Loading…
x
Reference in New Issue
Block a user