{{ $t("Separate multiple email addresses with commas") }}
-
+
{{ $t("Separate multiple email addresses with commas") }}
-
+
- {{ $t("Default subject will be used if left empty") }}
+ {{ $t("leave blank for default subject") }}
https://docs.sendgrid.com/api-reference/mail-send/mail-send
diff --git a/src/lang/en.json b/src/lang/en.json
index c07e06fab4..8645b9a2fb 100644
--- a/src/lang/en.json
+++ b/src/lang/en.json
@@ -1051,5 +1051,6 @@
"From":"From",
"Can be found on:": "Can be found on: {0}",
"The phone number of the recipient in E.164 format.": "The phone number of the recipient in E.164 format.",
- "Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.":"Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies."
+ "Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.":"Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.",
+ "SendGrid API Key": "SendGrid API Key"
}
From 009fda22683cbba0f6530323caaf9459a07fe90b Mon Sep 17 00:00:00 2001
From: sctnightcore <23263315+sctnightcore@users.noreply.github.com>
Date: Wed, 16 Oct 2024 21:57:06 +0700
Subject: [PATCH 15/16] Update src/components/notifications/SendGrid.vue
Co-authored-by: Frank Elsinga
---
src/components/notifications/SendGrid.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/notifications/SendGrid.vue b/src/components/notifications/SendGrid.vue
index 21b0786a0c..18118f4690 100644
--- a/src/components/notifications/SendGrid.vue
+++ b/src/components/notifications/SendGrid.vue
@@ -40,7 +40,7 @@ export default {
},
mounted() {
if (typeof this.$parent.notification.sendgridSubject === "undefined") {
- this.$parent.notification.sendgridSubject = "Uptime-Kuma";
+ this.$parent.notification.sendgridSubject = "Notification from Your Uptime Kuma";
}
},
};
From 04338025e4b38cbe6ace14da43625c8249c42596 Mon Sep 17 00:00:00 2001
From: sctnightcore <23263315+sctnightcore@users.noreply.github.com>
Date: Thu, 17 Oct 2024 11:01:48 +0700
Subject: [PATCH 16/16] add Separate multiple email addresses with commas to
en.json
---
src/lang/en.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/lang/en.json b/src/lang/en.json
index 8645b9a2fb..5bfc3bd920 100644
--- a/src/lang/en.json
+++ b/src/lang/en.json
@@ -1052,5 +1052,6 @@
"Can be found on:": "Can be found on: {0}",
"The phone number of the recipient in E.164 format.": "The phone number of the recipient in E.164 format.",
"Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.":"Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.",
- "SendGrid API Key": "SendGrid API Key"
+ "SendGrid API Key": "SendGrid API Key",
+ "Separate multiple email addresses with commas": "Separate multiple email addresses with commas"
}