Skip to content

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?

Comments

  • SvenSven www.GSA-Online.de
    This can easily added with present syntax. I have done that for next update.
    Thanked by 1cherub
  • Sounds good, I will have a look after the weekend
  • I see in the newest version this has been added, and looking at the engine the command I needed was 'url_add front'. I should be able to script some others now. Is this command also available for normal engines?
    Thanked by 1the_other_dude
  • SvenSven www.GSA-Online.de
    yes
Sign In or Register to comment.