mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(core): Update transactional email links for RBAC (#9727)
This commit is contained in:
parent
6a43710859
commit
ceb7f074eb
|
@ -176,7 +176,10 @@ export class UserManagementMailer {
|
|||
const result = await this.mailer.sendMail({
|
||||
emailRecipients,
|
||||
subject: `${sharer.firstName} has shared an n8n credential with you`,
|
||||
body: populateTemplate({ credentialsName, credentialsListUrl: `${baseUrl}/credentials` }),
|
||||
body: populateTemplate({
|
||||
credentialsName,
|
||||
credentialsListUrl: `${baseUrl}/home/credentials`,
|
||||
}),
|
||||
});
|
||||
|
||||
if (!result) return { emailSent: false };
|
||||
|
|
Loading…
Reference in a new issue