Random mail input

onepfa

New member
Good day

i hope im in the right section

i need to fill out a registartion form automatically and i want everytime a new random created mail adress
with the following domains like @gmail.com @yahoo.com @byom.com

example output in the registartion form like 889hdi9d73@byom.de or 939hdjsnd@gmail.com

how i can do this ?

if someone can help i would also offer a fee if someone can do this for me telegram @onepfa

thanks for any help
 

Jacob L

Moderator (Lawsonator)
You need a mixture of numbers and letters or just numbers?
Do you need it to be a set length?
Do you need it be within a certain range of numbers?

How will you detect the form is complete, or are these email addresses part of the form?
 

Jacob L

Moderator (Lawsonator)
Please tell me if this is what you want.
You'll find the email addresses in /storage/emulated/0/Emails/
 

Attachments

  • Random_email_addresses.macro
    10.9 KB · Views: 10

tanutanu

Well-known member
Good day

i hope im in the right section

i need to fill out a registartion form automatically and i want everytime a new random created mail adress
with the following domains like @gmail.com @yahoo.com @byom.com

example output in the registartion form like 889hdi9d73@byom.de or 939hdjsnd@gmail.com

how i can do this ?

if someone can help i would also offer a fee if someone can do this for me telegram @onepfa

thanks for any help
spammy acticity🤔
 

Dm114

Well-known member
Good day

i hope im in the right section

i need to fill out a registartion form automatically and i want everytime a new random created mail adress
with the following domains like @gmail.com @yahoo.com @byom.com

example output in the registartion form like 889hdi9d73@byom.de or 939hdjsnd@gmail.com

how i can do this ?

if someone can help i would also offer a fee if someone can do this for me telegram @onepfa

thanks for any help
It's quite easy to achieve but what is the purpose for creating such random addresses that don't exist (fake addresses)?
 
Last edited:

tanutanu

Well-known member
I believe nobody wants thousands of email addresses for personal use.
I don't know somebody want to pay money for making few email addresses.
Silence is sometimes golden.
 

Dm114

Well-known member
Yes they dont need to have mail access its like only a random mail adress like klaus283u4u3@byom.de
Simple botting activity
The principle is to:
1⁰- Create a string variable containing allowed characters (let's say 0...9a...z) ;
2⁰- Randomly extract the Nth character from this string, with N ranging from 1 to 36 and concatenate it to your result address string ;
3⁰- Repeat 2⁰ as many times as necessary (either a fixed or random number of times depending on the length of the address)
 

onepfa

New member
The principle is to:
1⁰- Create a string variable containing allowed characters (let's say 0...9a...z) ;
2⁰- Randomly extract the Nth character from this string, with N ranging from 1 to 36 and concatenate it to your result address string ;
3⁰- Repeat 2⁰ as many times as necessary (either a fixed or random number of times depending on the length of the address)
How i do this on macrodroid? What i have to choosse?
 
Top