diff --git a/wechatMsg.go b/wechatMsg.go index 4ff73a3..15023b1 100644 --- a/wechatMsg.go +++ b/wechatMsg.go @@ -27,3 +27,13 @@ func (m *InWechatMsg) replyText(s string) { str, _ := BuildTextMsg(m.header.FromUserName, s) m.instantResponse <- str } + +func (m *InWechatMsg) transfer2KF() { + str, _ := BuildKFTransferAnyOneMsg(m.header.FromUserName) + m.replyXML(str) +} + +func (m *InWechatMsg) transfer2SpecificKF(kf string) { + str := buildKfForwardMsg(m.header.FromUserName, kf) + m.replyXML(str) +}