當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Mail.Content方法代碼示例

本文整理匯總了Golang中mailfile.Mail.Content方法的典型用法代碼示例。如果您正苦於以下問題:Golang Mail.Content方法的具體用法?Golang Mail.Content怎麽用?Golang Mail.Content使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mailfile.Mail的用法示例。


在下文中一共展示了Mail.Content方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Parse

func Parse(mail mailfile.Mail) (*post.Post, error) {

	//JavaTWO即 將於 7/20盛 大舉辦!即日起可享早鳥優惠, 將New iPad帶 回家!
	if !strings.HasPrefix(mail.Subject(), "[email protected]") {
		return nil, ErrNotSupport
	}

	//[email protected]新文章通知:Hello JavaFX! Part 3
	for _, prefix := range []string{"[email protected]新文章通知:"} {
		if strings.HasPrefix(mail.Subject(), prefix) {
			return article.Parse(mail.Content())
		}
	}

	//[email protected], 回覆通知
	if strings.HasPrefix(mail.Subject(), "[email protected], 回覆通知") {
		return general.Parse(mail.Content())
	}

	//[email protected]新話題通知:*.class如何反編譯回*.java還能正常執行?
	//[email protected]話題更新通知:Guava 教學係列文章
	for _, prefix := range []string{"[email protected]新話題通知:", "[email protected]話題更新通知:", "[email protected]話題更新通知:"} {
		if strings.HasPrefix(mail.Subject(), prefix) {
			return general.Parse(mail.Content())
		}
	}

	return nil, ErrNotSupport
}
開發者ID:postfix,項目名稱:spamdefender,代碼行數:29,代碼來源:mailpost.go


注:本文中的mailfile.Mail.Content方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。