mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
feat(aliyun-dm): test message template (#183)
* feat(aliyun-dm): test message template * fix: remove test template
This commit is contained in:
parent
764de712d7
commit
81aaa4a083
2 changed files with 5 additions and 1 deletions
|
@ -73,7 +73,10 @@ export const sendMessage: EmailSendMessageFunction = async (address, type, data)
|
|||
ToAddress: address,
|
||||
FromAlias: config.fromAlias,
|
||||
Subject: template.subject,
|
||||
HtmlBody: template.content.replaceAll('{{code}}', data.code),
|
||||
HtmlBody:
|
||||
typeof data.code === 'string'
|
||||
? template.content.replaceAll('{{code}}', data.code)
|
||||
: template.content,
|
||||
},
|
||||
config.accessKeySecret
|
||||
);
|
||||
|
|
|
@ -25,6 +25,7 @@ export interface EmailMessageTypes {
|
|||
ForgotPassword: {
|
||||
code: string;
|
||||
};
|
||||
Test: Record<string, unknown>;
|
||||
}
|
||||
|
||||
export type EmailSendMessageFunction<T = unknown> = (
|
||||
|
|
Loading…
Add table
Reference in a new issue