mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-06 14:05:46 +01:00
* fix: #7604 shortened CTA text and added custom text for some notifs Specifically, new-reply and new-chat have different CTA text as they do not go to the forum home like other email templates send users to. * fix: minor optimization as suggested by @barisusakli
This commit is contained in:
@@ -241,6 +241,11 @@ function pushToUids(uids, notification, callback) {
|
||||
}
|
||||
|
||||
function sendEmail(uids, callback) {
|
||||
// Update CTA messaging (as not all notification types need custom text)
|
||||
if (['new-reply', 'new-chat'].includes(notification.type)) {
|
||||
notification['cta-type'] = notification.type;
|
||||
}
|
||||
|
||||
async.eachLimit(uids, 3, function (uid, next) {
|
||||
emailer.send('notification', uid, {
|
||||
path: notification.path,
|
||||
|
||||
Reference in New Issue
Block a user