พื้นที่เก็บข้อมูลนี้มีไว้สำหรับ TempMail.lol Python API
ไลบรารีนี้แตกต่าง อย่างสิ้นเชิง จากเวอร์ชัน 2.xx โปรดดูการใช้งานเพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการเปลี่ยนแปลงในไลบรารี Python
โปรดเปลี่ยนไปใช้ไลบรารีเวอร์ชันใหม่หากคุณใช้คีย์ API ใหม่ หากคุณยังคงใช้ BananaCrumbs ID คุณต้องใช้ v2
คุณสามารถติดตั้ง TempMail API ได้โดยใช้ PIP:
pip install tempmail-lol
หากคุณมีการสมัครสมาชิก TempMail Plus หรือ Ultra คุณสามารถใช้ได้ใน API โปรดดูการใช้งานด้านล่าง หากคุณต้องการความช่วยเหลือ โปรดสอบถามใน Discord Server ของเราหรือส่งอีเมลถึงเราที่ [email protected]
คุณไม่จำเป็นต้องมีคีย์ API เพื่อใช้ TempMail ระดับฟรี
from TempMail import TempMail
# Create a new TempMail object
tmp = TempMail ()
# If you have an API Key, use it here (you do not need an API key to use the free tier)
tmp = TempMail ( "tm.1234567890.randomcharactershere" )
# Generate an inbox with a random domain and prefix
inb = tmp . createInbox ()
# Or... use a prefix
inb = tmp . createInbox ( prefix = "joe" )
# Generate an inbox using a specific domain (you can also use your custom domain here)
# Prefixes on custom domains has no extra characters. For example, a custom domain example.com
# with a prefix of "whoever" will make "[email protected]". If you do not provide a prefix,
# a random one will be created for you.
inb = tmp . createInbox ( domain = "mycustomdomain.com" , prefix = "optional" )
# Check for emails (throws exception on invalid token)
emails = tmp . getEmails ( inb )
# Or... use the token (which is a string)
emails = tmp . getEmails ( inb . token )
print ( "Emails:" )
for email in emails :
print ( " t Sender: " + email . sender )
print ( " t Recipient: " + email . recipient )
print ( " t Subject: " + email . subject )
print ( " t Body: " + email . body )
print ( " t HTML: " + str ( email . html )) # may be None
print ( " t Date: " + str ( email . date )) # Unix timestamp in milliseconds
โปรดทราบว่าโทเค็นสำหรับกล่องจดหมายที่กำหนดเองจะจัดเก็บไว้ในโดเมนของคุณเป็นบันทึกข้อความที่มีชื่อ _tmpml
และแฮช sha512
ดูรายละเอียดเพิ่มเติมได้ที่ account.tempmail.lol