Fix MailGun in main.wasp to Mailgun (#221)

* Fix MailGun in main.wasp to Mailgun

* fix
This commit is contained in:
Martin Šošić 2024-07-11 18:26:53 +02:00 committed by GitHub
parent a348a85660
commit a812b2d7ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -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())

View File

@ -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