Tutorial: Imacro Script Email Group Inviter

melfornazari

Regular Member
Joined
Jul 10, 2014
Messages
279
Reaction score
91
Hello!
This Imacro Script will help you to invite people to you group by email in bulk.

1. Save in your "C:\Users\mel\Documents\iMacros\Datasources" a file "email.csv" with emails you want, like:

email1
email2
email3

2. Copy this to your imacro and save like "facebookinvite.iim":

VERSION BUILD=8820413 RECORDER=FX
TAB T=1
SET !DATASOURCE email.csv
SET !DATASOURCE_COLUMNS 1
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO= YOUR GROUP LINK HERE
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=TXT:Invite<SP>by<SP>email
TAG POS=4 TYPE=INPUT:TEXT FORM=ACTION:/ajax/groups/members/add_post.php?source=dialog_typeahead&group_id=YOUR ID GROUP HERE&refresh=1 ATTR=* CONTENT={{!COL1}}
TAG POS=1 TYPE=BUTTON FORM=ACTION:/ajax/groups/members/add_post.php?source=dialog_typeahead&group_id=YOUR ID GROUP HERE&refresh=1 ATTR=TXT:Invite
TAG POS=1 TYPE=BUTTON ATTR=TXT:Done
SET !ERRORIGNORE NO
SET !TIMEOUT_STEP 6
WAIT SECONDS=1

YOUR GROUP LINK HERE: Paste your group url
YOUR ID GROUP HERE: Paste your group ID

3. Use the "Play(Loop)" but first set the "Max:" with the number of emails you have in your csv file.

Now you can invite a lot of people to you facebook group! :cool:
 
SyntaxError: wrong format of TAG command, line 12 (Error code: -910)

Lol
 
RuntimeError: Data source file does not exist, line 3 (Error code: -930)

Lol
 
Anyone having good results with it?
 
I get
Code:
Error: Component returned failure code: 0x80500001 [nsIConverterInputStream.init] (Error code: -1001)
Can anyone help with this?
 
I get
Code:
Error: Component returned failure code: 0x80500001 [nsIConverterInputStream.init] (Error code: -1001)
Can anyone help with this?

Reencode CSV to be UTF-8.

Mine won't pull data from the CSV. It just leaves it blank and presses invite.
 
Last edited:
The errors you guys get are easy to resolve, please take some time to learn the basics of IMacros before using the script of the OP.
Focus on the scripting that uses a .csv file.
 
Back
Top