-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest.py
28 lines (21 loc) · 1.26 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import httpx
# change 'http://127.0.0.1:3333' to your API URL once you have set it up
def createEmail(email, password): # you better keep the passwords of all the accounts here same to access them later easily
# email: the email you want to create
# password: the password for the email
return httpx.post("http://127.0.0.1:3333/create_email", data={"email": email, "password": password}).json()
def getVerification(email, password, sender, verification_location, imap):
# email: the email used in createEmail
# password: the password used in createEmail
# sender: the email that sent the verification message, for example "[email protected]" (you can set it to "ALL")
# verification_location: the location of the verification ["subject", "body"]
# imap: your imap domain, for example "mail.example.com"
return httpx.post("http://127.0.0.1:3333/get_verification", data = {
"email": email,
"password": password,
"sender": sender,
"verification_location": verification_location,
"imap": imap
}).json()
print(createEmail("[email protected]", "myPassword"))
print(getVerification(email="[email protected]", password="myPassword", sender="ALL", verification_location="subject", imap="mail.example.com"))