feat(net-tool): 更新 sendText2Chat 方法,支持可选标题参数
All checks were successful
/ release (push) Successful in 29s

This commit is contained in:
zhaoyingbo 2025-01-23 12:47:07 +00:00
parent 23e52245e5
commit 0c39125434

View File

@ -46,9 +46,11 @@ class LarkMessageService extends LarkBaseService {
*
* @param receiveId IDID类型应与查询参数receiveIdType
* @param content
* @param title
*/
async sendText2Chat(receiveId: string, content: string) {
return this.send("chat_id", receiveId, "text", content)
async sendText2Chat(receiveId: string, content: string, title?: string) {
const messageContent = title ? `<b>${title}</b>\n${content}` : content
return this.send("chat_id", receiveId, "text", messageContent)
}
/**