I want to pass first 10 email of the list file in post data.
Is it possible to do so.
the flow will be like
request 1 will have first 10 email of list, once it get completed request contains next 10 email and so on.
CAN IT BE ACHIEVED IN OPENBULLET?
Pure
October 9, 2022, 7:21pm
2
I’d imagine you can do this by using globals. I’m not home to test this out, but Ruri has a thread of something somewhat similar to this.
FLASH NEWS! From OB2 version 0.1.15 you are able to configure resources in your configs, so you don’t need to use the old method described below.
You can go to the config Settings > Data > Resources and configure your file resources. It’s important that you give them a unique name. Then in your config, in the LoliCode section, you can type
TAKEONE FROM "resourceName" => "myString"
or
TAKE 5 FROM "resourceName" => "myList"
to take one or more values from the resource! Easy right?
OUTDATED
…
I’d take a look at that and see if you can adapt it.
Ruri
October 16, 2022, 9:54am
3
Make a wordlist where each line has 10 emails separated by something like commas or semicolons. Then you can separate them again into a list of emails inside the body of the config by using the split block.