forked from ccozkan/instagram-unfollowers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email-template.html
57 lines (49 loc) · 1.7 KB
/
email-template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<h2>
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a> <br/>
Followers {{ followersnum }} <br/>
Following {{ followingsnum }}
</h2>
<hr/>
<h3>{{ num_newfollowers }} New Followers :)</h3>
{{#newfollowers}}
<img src="{{profile_pic_url}}" style="width:50px; height:50px;" />
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a>
{{full_name}}
<br/>
{{/newfollowers}}
<h3>{{ num_newunfollowers }} New Unfollowers :(</h3>
{{#newunfollowers}}
<img src="{{profile_pic_url}}" style="width:50px; height:50px;" />
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a>
{{full_name}}
<br/>
{{/newunfollowers}}
<h3>New Followings</h3>
{{#newfollowings}}
<img src="{{profile_pic_url}}" style="width:50px; height:50px;" />
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a>
{{full_name}}
<br/>
{{/newfollowings}}
<!-- <h3>Top Likers</h3>
{{#bestlikers}}
<img src="{{profile_pic_url}}" style="width:50px; height:50px;" />
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a>
{{full_name}}
({{count}} likes)
<br/>
{{/bestlikers}}
<h3>Never Liked</h3>
{{#neverliked}}
<img src="{{profile_pic_url}}" style="width:50px; height:50px;" />
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a>
{{full_name}}
<br/>
{{/neverliked}} -->
<h3>No Follow Back</h3>
{{#notback}}
<img src="{{profile_pic_url}}" style="width:50px; height:50px;" />
<a href="https://instagram.com/{{username}}" target="_blank">{{username}}</a>
{{full_name}}
<br/>
{{/notback}}