mail

PyPtt.API.mail(self, ptt_id: str, title: str, content: str, sign_file: [int | str] = 0, backup: bool = True) None

寄信。

參數:
  • ptt_id (str) – PTT ID。

  • title (str) – 信件標題。

  • content (str) – 信件內容。

  • sign_file (str | int) – 編號或隨機簽名檔 (x),預設為 0 (不選)。

  • backup (bool) – 如果是 True 寄信時將會備份信件,預設為 True。

回傳:

None

引發:

範例:

import PyPtt

ptt_bot = PyPtt.API()
try:
    # .. login ..
    ptt_bot.mail(ptt_id='CodingMan', title='信件標題', content='信件內容')
    # .. do something ..
finally:
    ptt_bot.logout()