feat(net-tool): 更新 sendText2Chat 方法,支持可选标题参数
All checks were successful
/ release (push) Successful in 29s
All checks were successful
/ release (push) Successful in 29s
This commit is contained in:
parent
23e52245e5
commit
0c39125434
@ -46,9 +46,11 @@ class LarkMessageService extends LarkBaseService {
|
||||
* 发送文本信息
|
||||
* @param receiveId 消息接收者的ID,ID类型应与查询参数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)
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user