Example with Mailinator

Similar to Restmail.net we need user name alias to use with the REST API. so we modify the first steps in the case case as follows:

Assigning TEST_USER_ALIAS and TEST_EMAIL

Following Mailinator API we need to set URL for page.assignVarRemotely:

page.assignVarRemotely configuration for Mailinator (part 1)

However Mailinator unlike Restmail.net doesn't allow to receive last message content with a single request. So we need to take advantage of optional request function command parameter:

So we alternate the default fetch logic of page.assignVarRemotely as follows:

Thus the command will read the listing and find a message with subject containing "Account Validation" string. Then it retrieves and returns the raw body of the matching mail. So the parse function may look like:

page.assignVarRemotely configuration for Mailinator (part 2)

Last updated

Was this helpful?