package mailx_test import ( "testing" "code.yun.ink/pkg/mailx" ) func TestParseHtmlResource(t *testing.T) { html := ` Document
您的收款方式审核失败
尊敬的ABpay用户,您好! 您的收款方式审核失败,失败原因人脸识别失败,请检查您的面部是否被遮挡或处于模糊状态,并再次尝试。 如非本人操作,请立即修改密码或联系客服。
这是一条自动发送的消息,请勿回复
  • ABpay开发者团队服务
  • 本邮件由系统自动发出请勿回复,如需要了解更多服务,欢迎访问ABpay官方网 还可以通以下方式联系我们
    客服电话:400-278-2890
    2024 ABpay.com.cn . All rightes reserved
    ` res, err := mailx.ParseHtmlResource(html) if err != nil { t.Fatal(err) } t.Log(res) }