UNPKG
create-sellflow
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
Pre-built cross-platform Shopify app template
github.com/sellflow/sellflow
sellflow/sellflow
create-sellflow
/
templates
/
basic
/
.maestro
/
scripts
/
getEmail.js
13 lines
(10 loc)
•
255 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
res = http.
get
(
"https://api.guerrillamail.com/ajax.php?f=get_email_address"
, );
const
data
= json(res.body);
const
email =
data
.email_addr;
const
guerillaSid =
data
.sid_token; output.email = { testEmail: email, guerillaSid: guerillaSid, };