# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 1
# self = https://watcher.sour.is/conv/ix47xqq
新手向:Go 語言發送郵件簡易教程**
\\*概述電子郵件是應用程序中常見的功能之一, Go 語言內置了對 SMTP 協議的支持, 可以方便地用 Go 語言編寫程序來發送電子郵件。本文將簡單介紹如何使用 Go 語言的 net/smtp、net/mail 等標準包來發送電子郵件。主要內容包括 發送郵件簡介 構建郵件內容 連接 SMTP 服務器 發送包含附件的郵件 設置抄送與密送 使用模板發送郵件 示例: ⌘ Read more*