mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-05-20 01:00:13 +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 @@
|
@@ -76,11 +74,11 @@
|
||||||
// NOTE: "Dummy" provider is just for local development purposes.
|
// 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)!
|
// 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: Dummy,
|
||||||
+ provider: SendGrid,
|
+ provider: SendGrid,
|
||||||
defaultFrom: {
|
defaultFrom: {
|
||||||
@ -84,7 +84,7 @@
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
@@ -345,7 +343,10 @@
|
@@ -323,7 +321,10 @@
|
||||||
email String? @unique
|
email String? @unique
|
||||||
username String? @unique
|
username String? @unique
|
||||||
lastActiveTimestamp DateTime @default(now())
|
lastActiveTimestamp DateTime @default(now())
|
||||||
|
@ -75,7 +75,7 @@ app OpenSaaS {
|
|||||||
emailSender: {
|
emailSender: {
|
||||||
// NOTE: "Dummy" provider is just for local development purposes.
|
// 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)!
|
// 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: Dummy,
|
||||||
defaultFrom: {
|
defaultFrom: {
|
||||||
name: "Open SaaS App",
|
name: "Open SaaS App",
|
||||||
@ -420,4 +420,4 @@ entity File {=psl
|
|||||||
key String
|
key String
|
||||||
uploadUrl String
|
uploadUrl String
|
||||||
psl=}
|
psl=}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
Loading…
x
Reference in New Issue
Block a user