Scripting new disposable email engines
Seeing that the disposable emails supplied by tempr.email all seem to be dead at the moment, and I use them regularly when scripting and testing, I thought I'd try to add some new email engines to SER. I've found several disposable email providers that seem scriptable but instead of giving full urls to access each email I would have to extract a key and use that key in a GET request.
Eg. for mailmenot.io you would use this url to get the message list:
https://mailmenot.io/api/emails/%emailuser%
and from the returned data we can extract a key, eg
"key":"oj18074roo4vsffr1es3h74ii5ocrnbsg9vepkg1"
which then is used to get the mail content by adding it to the initial url, eg
https://mailmenot.io/api/emails/%emailuser%/oj18074roo4vsffr1es3h74ii5ocrnbsg9vepkg1
Looking at the current workflow for email engines this doesn't look possible, as in the engines I've looked at a full url needs to be extracted. Is there any way around this or another method?
Eg. for mailmenot.io you would use this url to get the message list:
https://mailmenot.io/api/emails/%emailuser%
and from the returned data we can extract a key, eg
"key":"oj18074roo4vsffr1es3h74ii5ocrnbsg9vepkg1"
which then is used to get the mail content by adding it to the initial url, eg
https://mailmenot.io/api/emails/%emailuser%/oj18074roo4vsffr1es3h74ii5ocrnbsg9vepkg1
Looking at the current workflow for email engines this doesn't look possible, as in the engines I've looked at a full url needs to be extracted. Is there any way around this or another method?
Comments