vmail 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/NOTES +541 -0
- data/README.markdown +29 -0
- data/Rakefile +21 -0
- data/bin/vmail +11 -0
- data/bin/vmail_client +13 -0
- data/config/environment.rb +18 -0
- data/config/gmail.orig.yml +8 -0
- data/gmail.vim +180 -0
- data/lib/contacts_extractor.rb +50 -0
- data/lib/gmail.rb +145 -0
- data/lib/vmail.rb +45 -0
- data/lib/vmail/imap_client.rb +495 -0
- data/lib/vmail/message_formatter.rb +113 -0
- data/lib/vmail/string_ext.rb +11 -0
- data/lib/vmail/version.rb +3 -0
- data/test/base64_test.rb +13 -0
- data/test/fixtures/euc-kr-header.eml +23 -0
- data/test/fixtures/euc-kr-html.eml +162 -0
- data/test/fixtures/google-affiliate.eml +1049 -0
- data/test/fixtures/htmlbody.eml +68 -0
- data/test/fixtures/moleskine-html.eml +82 -0
- data/test/fixtures/textbody-nocontenttype.eml +118 -0
- data/test/fixtures/with-attachments.eml +123 -0
- data/test/message_formatter_test.rb +84 -0
- data/test/test_helper.rb +10 -0
- data/test/time_format_test.rb +15 -0
- data/viewer.vim +623 -0
- data/vmail.gemspec +23 -0
- data/wrapper.rb +8 -0
- metadata +117 -0
@@ -0,0 +1,113 @@
|
|
1
|
+
require 'mail'
|
2
|
+
require 'open3'
|
3
|
+
require 'iconv'
|
4
|
+
|
5
|
+
class MessageFormatter
|
6
|
+
# initialize with a Mail object
|
7
|
+
def initialize(mail, uid = nil)
|
8
|
+
@mail = mail
|
9
|
+
@uid = uid
|
10
|
+
end
|
11
|
+
|
12
|
+
def list_parts(parts = (@mail.parts.empty? ? [@mail] : @mail.parts))
|
13
|
+
if parts.empty?
|
14
|
+
return []
|
15
|
+
end
|
16
|
+
lines = parts.map do |part|
|
17
|
+
if part.multipart?
|
18
|
+
list_parts(part.parts)
|
19
|
+
else
|
20
|
+
# part.charset could be used
|
21
|
+
"- #{part.content_type}"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
lines.flatten
|
25
|
+
end
|
26
|
+
|
27
|
+
def process_body
|
28
|
+
part = find_text_part(@mail.parts)
|
29
|
+
body = if part && part.respond_to?(:header)
|
30
|
+
if part.header["Content-Type"].to_s =~ /text\/plain/
|
31
|
+
format_text_body(part)
|
32
|
+
elsif part.header["Content-Type"].to_s =~ /text\/html/
|
33
|
+
format_html_body(part)
|
34
|
+
else
|
35
|
+
format_text_body(part)
|
36
|
+
end
|
37
|
+
else
|
38
|
+
"NO BODY"
|
39
|
+
end
|
40
|
+
rescue
|
41
|
+
puts $!
|
42
|
+
body
|
43
|
+
end
|
44
|
+
|
45
|
+
def find_text_part(parts = @mail.parts)
|
46
|
+
if parts.empty?
|
47
|
+
return @mail
|
48
|
+
end
|
49
|
+
part = parts.detect {|part| part.multipart?}
|
50
|
+
if part
|
51
|
+
find_text_part(part.parts)
|
52
|
+
else
|
53
|
+
# no multipart part
|
54
|
+
part = parts.detect {|part| (part.header["Content-Type"].to_s =~ /text\/plain/) }
|
55
|
+
if part
|
56
|
+
return part
|
57
|
+
else
|
58
|
+
parts.first
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def format_text_body(part)
|
64
|
+
text = part.body.decoded.gsub("\r", '')
|
65
|
+
charset = part.content_type_parameters && part.content_type_parameters['charset']
|
66
|
+
if charset
|
67
|
+
Iconv.conv('utf-8//translit//ignore', charset, text)
|
68
|
+
else
|
69
|
+
text
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
# depend on lynx
|
74
|
+
def format_html_body(part)
|
75
|
+
html = part.body.decoded.gsub("\r", '')
|
76
|
+
stdin, stdout, stderr = Open3.popen3("lynx -stdin -dump")
|
77
|
+
stdin.puts html
|
78
|
+
stdin.close
|
79
|
+
output = stdout.read
|
80
|
+
charset = part.content_type_parameters && part.content_type_parameters['charset']
|
81
|
+
charset ? Iconv.conv('utf-8//translit//ignore', charset, output) : output
|
82
|
+
end
|
83
|
+
|
84
|
+
def extract_headers(mail = @mail)
|
85
|
+
headers = {'from' => utf8(mail['from'].decoded),
|
86
|
+
'date' => (mail.date.strftime('%a, %b %d %I:%M %p %Z %Y') rescue mail.date),
|
87
|
+
'to' => mail['to'].nil? ? nil : utf8(mail['to'].decoded),
|
88
|
+
'subject' => utf8(mail.subject)
|
89
|
+
}
|
90
|
+
if !mail.cc.nil?
|
91
|
+
headers['cc'] = utf8(mail['cc'].decoded.to_s)
|
92
|
+
end
|
93
|
+
if !mail.reply_to.nil?
|
94
|
+
headers['reply_to'] = utf8(mail['reply_to'].decoded)
|
95
|
+
end
|
96
|
+
headers
|
97
|
+
rescue
|
98
|
+
{'error' => $!}
|
99
|
+
end
|
100
|
+
|
101
|
+
def encoding
|
102
|
+
@encoding ||= @mail.header.charset || 'utf-8'
|
103
|
+
end
|
104
|
+
|
105
|
+
def utf8(string)
|
106
|
+
return '' unless string
|
107
|
+
return string unless encoding
|
108
|
+
Iconv.conv('utf-8//translit/ignore', encoding, string)
|
109
|
+
rescue
|
110
|
+
puts $!
|
111
|
+
string
|
112
|
+
end
|
113
|
+
end
|
data/test/base64_test.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
describe "Decode base64 string" do
|
4
|
+
before do
|
5
|
+
@string = "=?GB2312?B?Rnc6IEVsZWN0cm9uaWMgUGlja3BvY2tldGluZyDQodDE0MXTw7+o?="
|
6
|
+
end
|
7
|
+
|
8
|
+
it "should decode" do
|
9
|
+
skip
|
10
|
+
require 'base64'
|
11
|
+
assert_equal 'test', Base64::decode64(@string)
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
Delivered-To: dhchoi@gmail.com
|
2
|
+
Received: by 10.213.9.14 with SMTP id j14cs469585ebj;
|
3
|
+
Wed, 1 Dec 2010 06:43:45 -0800 (PST)
|
4
|
+
Received: by 10.90.24.10 with SMTP id 10mr1657395agx.179.1291214623356;
|
5
|
+
Wed, 01 Dec 2010 06:43:43 -0800 (PST)
|
6
|
+
Return-Path: <11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr>
|
7
|
+
Received: from withweb.co.kr ([218.154.193.196])
|
8
|
+
by mx.google.com with SMTP id i30si88051anh.99.2010.12.01.06.43.41;
|
9
|
+
Wed, 01 Dec 2010 06:43:43 -0800 (PST)
|
10
|
+
Received-SPF: neutral (google.com: 218.154.193.196 is neither permitted nor denied by best guess record for domain of 11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr) client-ip=218.154.193.196;
|
11
|
+
Authentication-Results: mx.google.com; spf=neutral (google.com: 218.154.193.196 is neither permitted nor denied by best guess record for domain of 11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr) smtp.mail=11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr
|
12
|
+
Message-ID: <C_M_M_I_D.11_0_519_0_0.1071928.1291214604@withweb.co.kr>
|
13
|
+
Return-Path: <11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr>
|
14
|
+
From: =?euc-kr?B?xsTAz73DxrzAzLqlxq4=?= <with@filecity.co.kr>
|
15
|
+
To: =?euc-kr?B?ZG9weQ==?= <dhchoi@gmail.com>
|
16
|
+
Subject: =?euc-kr?B?tbbGr7TlxMSw+iDH1LKyx8+0wiAxMr/5ILmrt+HA5cL4IMDMuqXGriE=?=
|
17
|
+
Date: Wed, 1 Dec 2010 23:43:24 +0900
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Reply-To: =?euc-kr?B?xsTAz73DxrzAzLqlxq4=?= <with@filecity.co.kr>
|
20
|
+
Content-Type: text/html;
|
21
|
+
charset="euc-kr"
|
22
|
+
Content-Transfer-Encoding: 8bit
|
23
|
+
X-Mailer: ClickMailer Biz
|
@@ -0,0 +1,162 @@
|
|
1
|
+
Delivered-To: dhchoi@gmail.com
|
2
|
+
Received: by 10.213.9.14 with SMTP id j14cs469585ebj;
|
3
|
+
Wed, 1 Dec 2010 06:43:45 -0800 (PST)
|
4
|
+
Received: by 10.90.24.10 with SMTP id 10mr1657395agx.179.1291214623356;
|
5
|
+
Wed, 01 Dec 2010 06:43:43 -0800 (PST)
|
6
|
+
Return-Path: <11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr>
|
7
|
+
Received: from withweb.co.kr ([218.154.193.196])
|
8
|
+
by mx.google.com with SMTP id i30si88051anh.99.2010.12.01.06.43.41;
|
9
|
+
Wed, 01 Dec 2010 06:43:43 -0800 (PST)
|
10
|
+
Received-SPF: neutral (google.com: 218.154.193.196 is neither permitted nor denied by best guess record for domain of 11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr) client-ip=218.154.193.196;
|
11
|
+
Authentication-Results: mx.google.com; spf=neutral (google.com: 218.154.193.196 is neither permitted nor denied by best guess record for domain of 11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr) smtp.mail=11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr
|
12
|
+
Message-ID: <C_M_M_I_D.11_0_519_0_0.1071928.1291214604@withweb.co.kr>
|
13
|
+
Return-Path: <11-519-0-0-0-1071928-1-gmail_com@mail1.withweb.co.kr>
|
14
|
+
From: =?euc-kr?B?xsTAz73DxrzAzLqlxq4=?= <with@filecity.co.kr>
|
15
|
+
To: =?euc-kr?B?ZG9weQ==?= <dhchoi@gmail.com>
|
16
|
+
Subject: =?euc-kr?B?tbbGr7TlxMSw+iDH1LKyx8+0wiAxMr/5ILmrt+HA5cL4IMDMuqXGriE=?=
|
17
|
+
Date: Wed, 1 Dec 2010 23:43:24 +0900
|
18
|
+
MIME-Version: 1.0
|
19
|
+
Reply-To: =?euc-kr?B?xsTAz73DxrzAzLqlxq4=?= <with@filecity.co.kr>
|
20
|
+
Content-Type: text/html;
|
21
|
+
charset="euc-kr"
|
22
|
+
Content-Transfer-Encoding: 8bit
|
23
|
+
X-Mailer: ClickMailer Biz
|
24
|
+
|
25
|
+
<html>
|
26
|
+
<head>
|
27
|
+
<title>��Ư���İ� �Բ��ϴ� 12�� �������� �̺�Ʈ!</title>
|
28
|
+
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
|
29
|
+
</head>
|
30
|
+
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
31
|
+
<!-- ImageReady Slices (weekend_1118_1.psd) -->
|
32
|
+
<table id="Table_01" width="700" border="0" cellpadding="0" cellspacing="0">
|
33
|
+
<tr>
|
34
|
+
<td>
|
35
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_01.jpg" alt="" width="700" height="105" border="0" usemap="#doctc_mail">
|
36
|
+
<map name="doctc_mail" id="doctc_mail">
|
37
|
+
<area shape="rect" coords="160,75,224,97" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=168000000&b_btn=T_NEWproduct&from_chk=mail&_C_=2" target="_blank" onFocus="this.blur()"/>
|
38
|
+
<area shape="rect" coords="232,74,304,98" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=123000000&b_btn=T_GroupBuying&from_chk=mail&_C_=2" target="_blank" onFocus="this.blur()"/>
|
39
|
+
<area shape="rect" coords="311,75,387,97" href="http://doctc.com/bemarket/shop/index.php?pageurl=viewpage&filename=brandmall&b_btn=T_BrandMall&from_chk=mail&_C_=2" target="_blank" onFocus="this.blur()"/>
|
40
|
+
<area shape="rect" coords="394,75,463,97" href="http://doctc.com/becommunity/community/index.php?b_btn=T_Community&from_chk=mail&_C_=2" target="_blank" onFocus="this.blur()"/>
|
41
|
+
<area shape="rect" coords="473,74,546,96" href="http://doctc.com/becommunity/community/index.php?pageurl=board&mode=list&bt_code=106&b_btn=T_CustomerCenter&from_chk=mail&_C_=2" target="_blank" onFocus="this.blur()"/>
|
42
|
+
<area shape="rect" coords="554,75,635,97" href="http://doctc.com/becommunity/community/index.php?pageurl=board&mode=list&bt_code=38&c_btn=T_Gallery&from_chk=mail&_C_=2" target="_blank" onFocus="this.blur()"/>
|
43
|
+
<area shape="rect" coords="76,76,149,96" href="http://doctc.com/bemarket/shop/index.php?pageurl=viewpage&filename=carkind&b_btn=CAR_brand_2&from_chk=mail&_C_=2" target="_blank">
|
44
|
+
<area shape="rect" coords="5,3,696,63" href="http://doctc.com/bemarket/shop/index.php?_C_=2" target="_blank">
|
45
|
+
</map></td>
|
46
|
+
</tr>
|
47
|
+
<tr>
|
48
|
+
<td>
|
49
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_02.jpg" alt="" width="700" height="871" border="0" usemap="#Map"></td>
|
50
|
+
</tr>
|
51
|
+
<tr>
|
52
|
+
<td>
|
53
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_03.jpg" alt="" width="700" height="213" border="0" usemap="#Map2"></td>
|
54
|
+
</tr>
|
55
|
+
<tr>
|
56
|
+
<td>
|
57
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_04.jpg" alt="" width="700" height="121" border="0" usemap="#MapMap">
|
58
|
+
<map name="MapMap">
|
59
|
+
<area shape="circle" coords="642,60,43" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=121006004&from_chk=mail&_C_=2" target="_blank">
|
60
|
+
<area shape="circle" coords="537,61,43" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=121015014&from_chk=mail&_C_=2" target="_blank">
|
61
|
+
<area shape="circle" coords="429,60,43" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=174003000&nname=shark&from_chk=mail&_C_=2" target="_blank">
|
62
|
+
<area shape="circle" coords="325,59,43" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=174000000&sub_code=navi&from_chk=mail&_C_=2" target="_blank">
|
63
|
+
<area shape="circle" coords="218,58,43" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=121006011&from_chk=mail&_C_=2" target="_blank">
|
64
|
+
</map></td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td>
|
68
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_05.jpg" border="0" usemap="#Map2Map">
|
69
|
+
<map name="Map2Map">
|
70
|
+
<area shape="rect" coords="25,312,212,572" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=48188&part_code=121001024&from_chk=maill&_C_=2" target="_blank">
|
71
|
+
<area shape="rect" coords="254,312,442,571" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=48170&part_code=121001010&from_chk=maill&_C_=2" target="_blank">
|
72
|
+
<area shape="rect" coords="489,307,676,566" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=48087&part_code=121008027&from_chk=maill&_C_=2" target="_blank">
|
73
|
+
<area shape="rect" coords="490,19,677,282" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=48191&part_code=121006045&from_chk=maill&_C_=2" target="_blank">
|
74
|
+
<area shape="rect" coords="252,19,439,282" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=48324&part_code=121001054&from_chk=maill&_C_=2" target="_blank">
|
75
|
+
<area shape="rect" coords="22,20,209,283" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=33125&part_code=121015008&from_chk=maill&_C_=2" target="_blank">
|
76
|
+
</map></td>
|
77
|
+
</tr>
|
78
|
+
<tr>
|
79
|
+
<td>
|
80
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_06.jpg" alt="" width="700" height="356" border="0" usemap="#Map3Map">
|
81
|
+
<map name="Map3Map">
|
82
|
+
<area shape="rect" coords="9,14,422,336" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodslist&part_code=123000000&b_btn=T_GroupBuying&from_chk=mail&_C_=2" target="_blank">
|
83
|
+
<area shape="rect" coords="428,13,691,335" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=outo_glam_ds40_sa&b_btn=outo_glam_ds40_sa&from_chk=mail&_C_=2" target="_blank">
|
84
|
+
</map></td>
|
85
|
+
</tr>
|
86
|
+
<tr>
|
87
|
+
<td>
|
88
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_07.jpg" alt="" width="700" height="356" border="0" usemap="#Map3MapMap">
|
89
|
+
<map name="Map3MapMap">
|
90
|
+
<area shape="rect" coords="9,14,422,336" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=Super_HELP_65ds&b_btn=Super_HELP_65ds&from_chk=mail&_C_=2" target="_blank">
|
91
|
+
<area shape="rect" coords="428,13,691,335" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=iphone_galaxy&b_btn=iphone_galaxy&b_btn=plan_03&from_chk=mail&_C_=2" target="_blank">
|
92
|
+
</map></td>
|
93
|
+
</tr>
|
94
|
+
<tr>
|
95
|
+
<td>
|
96
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_08.jpg" alt="" width="700" height="357" border="0" usemap="#Map3MapMap2">
|
97
|
+
<map name="Map3MapMap2">
|
98
|
+
<area shape="rect" coords="431,181,693,337" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=eun_ju_2year&b_btn=eun_ju_2year&from_chk=mail&_C_=2" target="_blank">
|
99
|
+
<area shape="rect" coords="9,14,422,336" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=yf_40ds_sa_moo&b_btn=yf_40ds_sa_moo&from_chk=mail&_C_=2" target="_blank">
|
100
|
+
<area shape="rect" coords="432,13,694,169" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=macgyber&b_btm=macgyber&from_chk=mail&_C_=2" target="_blank">
|
101
|
+
</map></td>
|
102
|
+
</tr>
|
103
|
+
<tr>
|
104
|
+
<td>
|
105
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_09.jpg" alt="" width="700" height="360" border="0" usemap="#Map3Map2Map">
|
106
|
+
<map name="Map3Map2Map">
|
107
|
+
<area shape="rect" coords="6,14,419,336" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=winter&b_btn=winter&from_chk=mail&_C_=2" target="_blank">
|
108
|
+
<area shape="rect" coords="426,13,694,336" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=loop_carrier&b_btn=Carrier&from_chk=mail&_C_=2" target="_blank">
|
109
|
+
</map></td>
|
110
|
+
</tr>
|
111
|
+
<tr>
|
112
|
+
<td>
|
113
|
+
<img src="http://doctc.com/bemarket/imgs/save/mail/weekend_1118_1_10.jpg" alt="" width="700" height="350" border="0" usemap="#Map3Map2MapMap">
|
114
|
+
<map name="Map3Map2MapMap"><area shape="rect" coords="9,13,422,335" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=sticker_em&b_btn=sticker_em&from_chk=mail&_C_=2" target="_blank">
|
115
|
+
<area shape="rect" coords="431,178,695,340" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=zero_sport&b_btn=zero_sport&from_chk=mail&_C_=2" target="_blank">
|
116
|
+
<area shape="rect" coords="430,13,694,171" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=masic_clip_carbon&b_btn=masic_clip_carbon&from_chk=mail&_C_=2" target="_blank">
|
117
|
+
</map></td>
|
118
|
+
</tr>
|
119
|
+
<tr>
|
120
|
+
<td>
|
121
|
+
<img src="http://filecity.co.kr/skin_2009/email/20100917/mail_foot02.gif" alt="" border="0">
|
122
|
+
<map name="Map3Map2MapMapMap2">
|
123
|
+
<area shape="rect" coords="484,14,675,267" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=40545&part_code=121001021&from_chk=mail&_C_=2" target="_blank">
|
124
|
+
<area shape="rect" coords="251,17,440,263" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=47468&part_code=121015008&from_chk=mail&_C_=2" target="_blank">
|
125
|
+
<area shape="rect" coords="21,16,211,268" href="http://doctc.com/bemarket/shop/index.php?pageurl=page_goodsdetail&uid=40250&part_code=121001007&from_chk=mail&_C_=2" target="_blank">
|
126
|
+
</map></td>
|
127
|
+
</tr>
|
128
|
+
</table>
|
129
|
+
<!-- End ImageReady Slices -->
|
130
|
+
|
131
|
+
<map name="Map">
|
132
|
+
<area shape="rect" coords="252,731,447,822" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=yf_sonata_spo_30ds&from_chk=mail&_C_=2" target="_blank">
|
133
|
+
<area shape="rect" coords="52,730,247,821" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=hyper&from_chk=mail&_C_=2" target="_blank">
|
134
|
+
<area shape="rect" coords="50,640,247,727" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=head_line_eyes_moo&b_btn=head_line_eyes_moo&from_chk=mail&_C_=2" target="_blank">
|
135
|
+
<area shape="rect" coords="252,640,445,729" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=pure_hon_jang&from_chk=mail&_C_=2" target="_blank">
|
136
|
+
<area shape="rect" coords="451,639,646,730" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=sm5_grill_jang&from_chk=mail&_C_=2" target="_blank">
|
137
|
+
<area shape="rect" coords="452,547,647,638" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=downspring&b_btn=downspring&from_chk=mail&_C_=2" target="_blank">
|
138
|
+
<area shape="rect" coords="252,548,447,639" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=imercury_2channel&b_btn=imercury_2channel&from_chk=mail&_C_=2" target="_blank">
|
139
|
+
<area shape="rect" coords="50,548,245,639" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=jin_liders&b_btn=jin_liders&from_chk=mail" target="_blank&_C_=2">
|
140
|
+
<area shape="rect" coords="250,455,445,546" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=dowon_rock&b_btn=dowon_rock&from_chk=mail" target="_blank&_C_=2">
|
141
|
+
<area shape="rect" coords="452,455,647,546" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=Lear_bumper&b_btn=Lear_bumper&from_chk=mail" target="_blank&_C_=2">
|
142
|
+
<area shape="rect" coords="50,453,245,544" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=front_led_re&b_btn=front_led_re&from_chk=mail" target="_blank&_C_=2">
|
143
|
+
</map>
|
144
|
+
|
145
|
+
<map name="Map2"><area shape="rect" coords="532,171,693,209" href="http://doctc.com/bemarket/shop/index.php?pageurl=etm_eventpage&idboard=newcar&b_btn=newcar&from_chk=mail&_C_=2" target="_blank">
|
146
|
+
</map></body>
|
147
|
+
</html>
|
148
|
+
<APPLET CODE="Duration.class" CODEBASE="http://mail2.withweb.co.kr:8888/" width=0 height=0>
|
149
|
+
<param name="url" value="http://mail2.withweb.co.kr:8888/bin/checker">
|
150
|
+
<param name="mode" value="1">
|
151
|
+
<param name="module" value="11">
|
152
|
+
<param name="service" value="0">
|
153
|
+
<param name="etime" value="20101215202900">
|
154
|
+
<param name="mailidx" value="519">
|
155
|
+
<param name="seqidx" value="1071928">
|
156
|
+
<param name="dmidx" value="0">
|
157
|
+
<param name="emidx" value="0">
|
158
|
+
</APPLET>
|
159
|
+
|
160
|
+
<iframe frameborder=0 height=0 width=0 src="http://mail2.withweb.co.kr:8888/bin/checker?mode=1&dtime=0&module=11&service=0&etime=20101215202900&mailidx=519&seqidx=1071928&dmidx=0&emidx=0&flag=1"></iframe>
|
161
|
+
|
162
|
+
<img src="http://mail2.withweb.co.kr:8888/bin/checker?mode=1&dtime=0&module=11&service=0&etime=20101215202900&mailidx=519&seqidx=1071928&dmidx=0&emidx=0" width=0 height=0>
|
@@ -0,0 +1,1049 @@
|
|
1
|
+
Delivered-To: dhchoi@gmail.com
|
2
|
+
Received: by 10.213.9.14 with SMTP id j14cs497822ebj;
|
3
|
+
Wed, 1 Dec 2010 13:57:37 -0800 (PST)
|
4
|
+
Received: by 10.231.15.75 with SMTP id j11mr9449012iba.45.1291240650500;
|
5
|
+
Wed, 01 Dec 2010 13:57:30 -0800 (PST)
|
6
|
+
Return-Path: <bounce-2351774_HTML-557792318-11920654-54836-0@bounce.emailcomm-google.com>
|
7
|
+
Received: from mta1.emailcomm-google.com (mta1.emailcomm-google.com [66.231.83.54])
|
8
|
+
by mx.google.com with ESMTP id 3si1114194ibx.35.2010.12.01.13.57.26;
|
9
|
+
Wed, 01 Dec 2010 13:57:29 -0800 (PST)
|
10
|
+
Received-SPF: pass (google.com: domain of bounce-2351774_HTML-557792318-11920654-54836-0@bounce.emailcomm-google.com designates 66.231.83.54 as permitted sender) client-ip=66.231.83.54;
|
11
|
+
Authentication-Results: mx.google.com; spf=pass (google.com: domain of bounce-2351774_HTML-557792318-11920654-54836-0@bounce.emailcomm-google.com designates 66.231.83.54 as permitted sender) smtp.mail=bounce-2351774_HTML-557792318-11920654-54836-0@bounce.emailcomm-google.com; dkim=pass (test mode) header.i=affiliatenetwork@google.com
|
12
|
+
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=delta; d=google.com;
|
13
|
+
h=From:To:Subject:Date:List-Unsubscribe:MIME-Version:Reply-To:Message-ID:Content-Type; i=affiliatenetwork@google.com;
|
14
|
+
bh=n1L0acmJZKSqgWRW9g3DNqGhSJI=;
|
15
|
+
b=N0XIL4o+VhyvktVtcqOPpyf1lVblkWXMquirzqeEb/V6NXuEPq3uculswyI3N+7S9+wBIlsL4tC+
|
16
|
+
43Mgb4wv1+wC3FiP6c1GIzQQUX+fUmwQPpKcCUaUj3IdNwPqr65hccI3bMM3s9XEZ2IROosDy3WS
|
17
|
+
kIAIPLZMMZouysfMrbg=
|
18
|
+
DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=delta; d=google.com;
|
19
|
+
b=BkItVEPhfJhFt7yTW5Qaq2y+k68iOiZnLhR+RgCJu2si0440gNQj2nVQEgN4598U8wJg+9SnqfIg
|
20
|
+
SvkRkP8uPLFHaMumg0K5FeK9nJ3evh7KLAl6xvo1K3JF/EZfQ0kLu7sXVM+J4VkKbu3ewXYMucv8
|
21
|
+
bDjvkOg/WEqal3RJNAo=;
|
22
|
+
Received: by mta1.emailcomm-google.com (PowerMTA(TM) v3.5r15) id hur2ce0ie1sl for <dhchoi@gmail.com>; Wed, 1 Dec 2010 15:52:11 -0600 (envelope-from <bounce-2351774_HTML-557792318-11920654-54836-0@bounce.emailcomm-google.com>)
|
23
|
+
From: "Google Affiliate Network" <affiliatenetwork@google.com>
|
24
|
+
To: "Dan Choi" <dhchoi@gmail.com>
|
25
|
+
Cc: "Steve Jobs" <steve@apple.com>
|
26
|
+
Subject: Google Affiliate Network New Advertisers
|
27
|
+
Date: Wed, 01 Dec 2010 15:52:03 -0600
|
28
|
+
List-Unsubscribe: <mailto:leave-fc7e16737065037a717b28313958-fe20117572630d7f761578-fe6315717c66047b7010-fef511747d6702@leave.emailcomm-google.com>
|
29
|
+
MIME-Version: 1.0
|
30
|
+
Reply-To: "Google Affiliate Network" <reply-fe6315717c66047b7010-2351774_HTML-557792318-54836-0@emailcomm-google.com>
|
31
|
+
x-job: 54836_11920654
|
32
|
+
Message-ID: <473f18b7-edf1-4172-96c6-2d07afcaaf2e@xtinmta436.xt.local>
|
33
|
+
Content-Type: multipart/alternative;
|
34
|
+
boundary="w2OvAftNDvCz=_?:"
|
35
|
+
|
36
|
+
This is a multi-part message in MIME format.
|
37
|
+
|
38
|
+
--w2OvAftNDvCz=_?:
|
39
|
+
Content-Type: text/plain;
|
40
|
+
charset="us-ascii"
|
41
|
+
Content-Transfer-Encoding: 7bit
|
42
|
+
|
43
|
+
To view this email as a web page, go to the link below, or copy and paste it into your browser's address window.
|
44
|
+
http://view.emailcomm-google.com/?j=fe6315717c66047b7010&m=fef511747d6702&ls=fde612737c6c067a70117976&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&ju=Google Affiliate Network Newsletter
|
45
|
+
December 1, 2010
|
46
|
+
|
47
|
+
New programs available throughGoogle Affiliate Network:
|
48
|
+
|
49
|
+
Dallas Gold & Silver
|
50
|
+
|
51
|
+
|
52
|
+
Exchange
|
53
|
+
|
54
|
+
Kernel Fabyan's
|
55
|
+
|
56
|
+
|
57
|
+
Gourmet Popcorn
|
58
|
+
|
59
|
+
JewelClub.com
|
60
|
+
|
61
|
+
Catholic
|
62
|
+
|
63
|
+
|
64
|
+
Singles.com
|
65
|
+
|
66
|
+
Relic Brand
|
67
|
+
|
68
|
+
Tactics.com
|
69
|
+
|
70
|
+
True Religion Brand
|
71
|
+
|
72
|
+
|
73
|
+
Jeans
|
74
|
+
|
75
|
+
Wayside Gardens
|
76
|
+
|
77
|
+
Magic Murals
|
78
|
+
|
79
|
+
Boomer Medical
|
80
|
+
|
81
|
+
Dallas Gold & Silver Exchange
|
82
|
+
|
83
|
+
|
84
|
+
Commission: 8%
|
85
|
+
|
86
|
+
CD: 30 Days
|
87
|
+
|
88
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312418
|
89
|
+
Join Program
|
90
|
+
|
91
|
+
Program Highlights:
|
92
|
+
|
93
|
+
- 8% commission
|
94
|
+
- Commission duration 30 days
|
95
|
+
|
96
|
+
- $450average order value
|
97
|
+
|
98
|
+
- Free shipping & returns
|
99
|
+
- Exclusive ongoing promotions on various brands
|
100
|
+
|
101
|
+
- Over 3,000 SKUs
|
102
|
+
- BYOL availableDallas Gold & Silver Exchange is one of the United States' largest retailers of new and pre-owned Jewelry, Fine Watches, Diamonds, Rare Coins, Bullion and Collectibles. Over the last 30+ years we have gained and kept tens of thousands of clients because of our wide variety of inventory and wholesale level pricing.
|
103
|
+
|
104
|
+
|
105
|
+
Our brands include: Rolex, Tiffany & Co, Cartier, Breitling, Patek Phillipe, Baume & Mercier, Tag Heuer, James Avery, John Hardy, Judith Ripka and more.
|
106
|
+
|
107
|
+
Website:
|
108
|
+
http://www.dgse.com
|
109
|
+
http://www.dgse.com
|
110
|
+
|
111
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312418
|
112
|
+
Join the Dallas Gold & Silver Exchange affiliate program
|
113
|
+
|
114
|
+
Contact:
|
115
|
+
mailto:dclem@dgse.com
|
116
|
+
dclem@dgse.com
|
117
|
+
|
118
|
+
Kernel Fabyan's Gourmet Popcorn
|
119
|
+
|
120
|
+
|
121
|
+
Commission: 10%
|
122
|
+
|
123
|
+
CD: 30 Days
|
124
|
+
|
125
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000318477
|
126
|
+
Join Program
|
127
|
+
|
128
|
+
Program Highlights:
|
129
|
+
|
130
|
+
- 10% commission
|
131
|
+
- Commission duration 30 days
|
132
|
+
- Frequent and powerful promotions
|
133
|
+
- Provide exclusive offers
|
134
|
+
- BYOL available
|
135
|
+
At Kernel Fabyan's we use only the highest quality ingredients to make the best gourmet popcorn fresh daily. This way, whether you enjoy our popcorn yourself or give it as a gift, you can be confident that you are getting the very best!
|
136
|
+
|
137
|
+
|
138
|
+
Kernel Fabyan's Gourmet Popcorn is ideal for every gift-giving occasion. Built-to-order
|
139
|
+
|
140
|
+
popcorn gifts in attractive tins make perfect corporate gifts and our gourmet popcorn party favors will make your wedding, baby shower, fund raiser or any gathering even more festive!
|
141
|
+
|
142
|
+
|
143
|
+
For all new publishers who drive their first transaction this holiday season on kernelfabyans.com, we will send you a free gourmet popcorn tin filled with our customers' favorite - the
|
144
|
+
Classic Mix, a delicious combination of caramel and golden cheddar
|
145
|
+
popcorn.
|
146
|
+
Website:
|
147
|
+
http://www.kernelfabyans.com/
|
148
|
+
http://www.kernelfabyans.com/
|
149
|
+
|
150
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000318477
|
151
|
+
Join the Kernel Fabyan's Gourmet Popcorn affiliate program
|
152
|
+
Contact:
|
153
|
+
mailto:pdillonkf@gmail.com
|
154
|
+
pdillonkf@gmail.com
|
155
|
+
|
156
|
+
JewelClub.com
|
157
|
+
|
158
|
+
|
159
|
+
Commission: 7.5%
|
160
|
+
|
161
|
+
CD: 30 Days
|
162
|
+
|
163
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316406
|
164
|
+
Join Program
|
165
|
+
|
166
|
+
Program Highlights:
|
167
|
+
|
168
|
+
- 7.5% commission
|
169
|
+
- Commission duration 30 days
|
170
|
+
- New items added daily
|
171
|
+
- The JewelClub Daily Giveaway & The JewelClub Daily Deal offers
|
172
|
+
|
173
|
+
- Free shipping and free gift box
|
174
|
+
|
175
|
+
- BYOL available
|
176
|
+
|
177
|
+
JewelClub is a member only website serving our employees and their invited friends and family. One perk of working at a jewelry company is that you can get your hands on stunning jewels at below-wholesale prices. Our employee and friends & family site is now open to new members. This members-only site features amazing jewels at unbelieveable prices, with new styles added daily. Our Customer Service Department is ready to assist you.
|
178
|
+
|
179
|
+
The site offers employees and their guests the benefit of purchasing quality fine jewelry produced in our factories around the world. The selection consists of diamonds, gemstones, pearls, gold and silver priced at or below wholesale. Items on JewelClub are primarily excess inventory or samples. For this reason, the offering on JewelClub changes daily and availability of certain items is limited. All of our products come with a 30-day money back guarantee.
|
180
|
+
Website:
|
181
|
+
http://www.jewelclub.com
|
182
|
+
http://www.jewelclub.com
|
183
|
+
|
184
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316406
|
185
|
+
Join the JewelClub.com affiliate program
|
186
|
+
Contact:
|
187
|
+
mailto:customerservice@jewelclub.com
|
188
|
+
customerservice@jewelclub.com
|
189
|
+
|
190
|
+
CatholicSingles.com
|
191
|
+
|
192
|
+
|
193
|
+
Bounty: $8-$20
|
194
|
+
|
195
|
+
CD: 30 Days
|
196
|
+
|
197
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000315059
|
198
|
+
Join Program
|
199
|
+
|
200
|
+
Program Highlights:
|
201
|
+
|
202
|
+
- $8-$20 bounty per membership sign-up
|
203
|
+
|
204
|
+
- Commission duration 30 days
|
205
|
+
Help singles find faith, friendship, and love at CatholicSingles.com - the home for Catholic Singles on the Web - and find yourself making some great commissions when you join as an affiliate.
|
206
|
+
|
207
|
+
|
208
|
+
Since 1997, CatholicSingles.com has been THE Internet meeting place for Catholic singles. With more Catholic singles online than any other site, CatholicSingles.com is a true Catholic community, and the best choice for finding that special someone who shares the same faith and values.
|
209
|
+
|
210
|
+
|
211
|
+
As a wholly-owned Catholic site, CatholicSingles.com offers members a Compatibility Test, Catholic news and weekly columns from clergy and staff, a Personal Profile Page with unlimited photo uploads, live chat rooms, private email accounts, member searches, opportunities to participate in special events, and much more. With privacy controls and great prices on monthly memberships, singles can soon find their soul mate at CatholicSingles.com.
|
212
|
+
|
213
|
+
Website:
|
214
|
+
http://www.catholicsingles.com/
|
215
|
+
http://www.catholicsingles.com
|
216
|
+
|
217
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000315059
|
218
|
+
Join the CatholicSingles.com affiliate program
|
219
|
+
Contact:
|
220
|
+
mailto:catholicsingles@eaccountable.com
|
221
|
+
catholicsingles@eaccountable.com
|
222
|
+
|
223
|
+
Relic Brand
|
224
|
+
|
225
|
+
|
226
|
+
Commission: 10%
|
227
|
+
|
228
|
+
CD: 30 Days
|
229
|
+
|
230
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316084
|
231
|
+
Join Program
|
232
|
+
|
233
|
+
Program Highlights:
|
234
|
+
|
235
|
+
- 10% commission
|
236
|
+
|
237
|
+
- Commission duration 30 days
|
238
|
+
- BYOL available
|
239
|
+
Since 1992, Relic has appealed to style-conscious consumers seeking trend-right fashion. Our in-house team of Relic designers stay continually abreast of the modern fashion scene, crafting collections that define our signature contemporary casual design aesthetic.
|
240
|
+
|
241
|
+
Website:
|
242
|
+
http://www.relicbrand.com
|
243
|
+
http://www.relicbrand.com
|
244
|
+
|
245
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316084
|
246
|
+
Join the Relic Brand affiliate program
|
247
|
+
Contact:
|
248
|
+
mailto:relic-affiliates@google.com
|
249
|
+
relic-affiliates@google.com
|
250
|
+
|
251
|
+
Tactics.com
|
252
|
+
|
253
|
+
|
254
|
+
Commission: 7%
|
255
|
+
|
256
|
+
CD: 30 Days
|
257
|
+
|
258
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314529
|
259
|
+
Join Program
|
260
|
+
|
261
|
+
Program Highlights:
|
262
|
+
|
263
|
+
- 7% commission
|
264
|
+
|
265
|
+
- Commission duration 30 days
|
266
|
+
- Special offers and significant discounts for your visitors
|
267
|
+
- BYOL available
|
268
|
+
Since 1999, Tactics has served tens of thousands of customers around the world, growing to become one of the largest online snow/skate/surf/street specialty stores in the country. Tactics prides themselves in providing courteous, informed and professional customer service and consistently fulfilling their promise to deliver quality gear and clothing to customer's doorsteps, quickly and accurately.
|
269
|
+
|
270
|
+
|
271
|
+
The Tactics affiliate program is a great way to earn commissions on everything from skateboard decks and accessories, to snowboards, boots, bindings and outerwear, plus surf gear and wetsuits. Tactics' broad selection also includes men's and women's clothing and footwear by 250 top-selling brands.
|
272
|
+
|
273
|
+
Website:
|
274
|
+
http://www.tactics.com/
|
275
|
+
http://www.tactics.com/
|
276
|
+
|
277
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314529
|
278
|
+
Join the Tactics.com affiliate program
|
279
|
+
Contact:
|
280
|
+
mailto:tactics@affiliatetraction.com
|
281
|
+
tactics@affiliatetraction.com
|
282
|
+
|
283
|
+
True Religion
|
284
|
+
|
285
|
+
|
286
|
+
Brand Jeans
|
287
|
+
|
288
|
+
Commission: 7%
|
289
|
+
|
290
|
+
CD: 30 Days
|
291
|
+
|
292
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314894
|
293
|
+
Join Program
|
294
|
+
|
295
|
+
Program Highlights:
|
296
|
+
|
297
|
+
- 7% commission
|
298
|
+
|
299
|
+
- Commission duration 30 days
|
300
|
+
- BYOL available
|
301
|
+
Jeffrey Lubell founded True Religion in 2002 with the intention of redefining premium denim. His vision was to make quality, American-made, authentic, timeless, great fitting, 1970's inspired jeans wear, with a trendsetting appeal for today's consumer.
|
302
|
+
|
303
|
+
|
304
|
+
Today, True Religion Brand Jeans is known not only for its denim, but also for its knit and woven sportswear, such as t-shirts, western shirts, sweatshirts and sweatpants that all have that vintage feel.True Religion's commitment to perfect fit, timeless style and that hippie bohemian chic flair have solidified True Religion's brand position as a leader in premium denim and casual sportswear globally.
|
305
|
+
|
306
|
+
|
307
|
+
While continuing to expand True Religion's line of jeans and sportswear, the company also branched out into numerous licensed products such as Footwear, Headwear, Swimwear, Eyewear, Hosiery, Socks, and Fragrance.
|
308
|
+
|
309
|
+
Website:
|
310
|
+
http://www.truereligionbrandjeans.com
|
311
|
+
http://www.truereligionbrandjeans.com
|
312
|
+
|
313
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314894
|
314
|
+
Join the True Religion Brand Jeans affiliate program
|
315
|
+
Contact:
|
316
|
+
mailto:onestopamc@gmail.com
|
317
|
+
onestopamc@gmail.com
|
318
|
+
mailto:shopdirectbrands@eaccountable.com
|
319
|
+
|
320
|
+
Wayside Gardens
|
321
|
+
|
322
|
+
|
323
|
+
Commission: 4.5%
|
324
|
+
|
325
|
+
CD: 30 Days
|
326
|
+
|
327
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312722
|
328
|
+
Join Program
|
329
|
+
|
330
|
+
Program Highlights:
|
331
|
+
|
332
|
+
- 4.5% commission
|
333
|
+
|
334
|
+
- Commission duration 30 days
|
335
|
+
- BYOL available
|
336
|
+
|
337
|
+
Your visitors will be delighted to discover a link to Wayside Gardens on your site, because they'll know that a superb selection of perennials, flowering plants, trees, shrubs, ground covers, and bulbs is just a click away. Serious gardeners appreciate the Wayside Gardens commitment to quality plants, sound roots, and unusual varieties.
|
338
|
+
|
339
|
+
|
340
|
+
If your visitors are true garden enthusiasts, they will be pleased with Wayside Gardens' carefully selected offering of shade perennials, sun perennials, container plants, fruit trees, deer-resistant plants, evergreens, and bulbs. To be offered by Wayside Gardens, a plant must meet the rigorous horticultural and aesthetic standards of renowned hybridizer, author, and gardening consultant, John Elsley. Your site's visitors deserve the best, and Wayside Gardens delivers.
|
341
|
+
|
342
|
+
Website:
|
343
|
+
http://www.waysidegardens.com/
|
344
|
+
http://www.waysidegardens.com
|
345
|
+
|
346
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312722
|
347
|
+
Join the Wayside Gardens affiliate program
|
348
|
+
Contact:
|
349
|
+
mailto:affiliate@waysidegardens.com
|
350
|
+
affiliate@waysidegardens.com
|
351
|
+
|
352
|
+
Magic Murals
|
353
|
+
|
354
|
+
|
355
|
+
Commission: 8%
|
356
|
+
|
357
|
+
CD: 30 Days
|
358
|
+
|
359
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000317153
|
360
|
+
Join Program
|
361
|
+
|
362
|
+
Program Highlights:
|
363
|
+
|
364
|
+
- 8% commission
|
365
|
+
- Commission duration 30 days
|
366
|
+
- 5% average conversion rate
|
367
|
+
- $300 average order value
|
368
|
+
- BYOL available
|
369
|
+
Discover the art of making major commissions when you become an affiliate of MagicMurals.com - the online source of decorative wall murals for homes or professional spaces.
|
370
|
+
|
371
|
+
|
372
|
+
No matter the style or subject, you'll find the mural to match at MagicMurals.com. Customers can shop for thousands of easy-to-apply, high-quality wall murals through an extensive gallery that includes images from National Geographic, Lonely Planet Images, and a select group of international photographers and illustrators.
|
373
|
+
|
374
|
+
|
375
|
+
From landscapes and nature shots to whimsical designs for the kids, every wall mural at MagicMurals.com is available in two exceptional materials: QuikStik,(tm) a repositionable and reusable self-adhesive vinyl, or UltraStik(tm) for a more permanent wallpaper solution. Customers can even create their own murals with a custom mural creator that allows them to upload their favorite image and see it transformed into a gorgeous wall mural made to their specifications. With an emphasis on quality and outstanding customer service, customers can make their vision a reality with a couple of clicks at MagicMurals.com.
|
376
|
+
|
377
|
+
Website:
|
378
|
+
http://www.magicmurals.com/
|
379
|
+
http://www.magicmurals.com/
|
380
|
+
|
381
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000317153
|
382
|
+
Join the Magic Murals affiliate program
|
383
|
+
Contact:
|
384
|
+
mailto:magicmurals@eaccountable.com
|
385
|
+
magicmurals@eaccountable.com
|
386
|
+
|
387
|
+
Boomer Medical
|
388
|
+
|
389
|
+
|
390
|
+
Commission: 5%
|
391
|
+
|
392
|
+
CD: 30 Days
|
393
|
+
|
394
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000290111
|
395
|
+
Join Program
|
396
|
+
|
397
|
+
Program Highlights:
|
398
|
+
|
399
|
+
- 5% commission
|
400
|
+
- Commission duration 30 days
|
401
|
+
- 28% average conversion rate
|
402
|
+
|
403
|
+
- $200+ average order value
|
404
|
+
|
405
|
+
- Free shipping on orders over $100
|
406
|
+
Boomer has over 26 years of extensive medical supply retail experience. Our staff consists of highly trained, certified and recognized personnel who have compiled very thoughtful product solutions for practically any physical challenge. We are devoted to helping our customers at every stage of their lifelong journey to health, happiness and success.
|
407
|
+
|
408
|
+
Link to BoomerMedical.com with confidence knowing that you're customers are shopping with a trusted brand.
|
409
|
+
|
410
|
+
|
411
|
+
Shipping: Items sold are intended for a US-based audience. When purchasing items from outside the US the sale is deemed to have taken place in the United States and is subject to exclusive jurisdiction of the United States Courts under US Law.
|
412
|
+
|
413
|
+
Website:
|
414
|
+
http://www.boomermedical.com
|
415
|
+
http://www.boomermedical.com
|
416
|
+
|
417
|
+
http://www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000290111
|
418
|
+
Join the Boomer Medical affiliate program
|
419
|
+
Contact:
|
420
|
+
mailto:mes@boomermedical.com
|
421
|
+
mes@boomermedical.com
|
422
|
+
|
423
|
+
If you have any questions, please don't hesitate to contact us.
|
424
|
+
|
425
|
+
YourGoogle Affiliate Network team
|
426
|
+
|
427
|
+
mailto:affiliatenetwork@google.com?subject=New%20Advertisers
|
428
|
+
affiliatenetwork@google.com
|
429
|
+
|
430
|
+
You are subscribed as dhchoi@gmail.com for this Google Affiliate Network promotional communication as reflected in your communications preferences in ConnectCommerceSM. To unsubscribe from Google Affiliate Network promotional communications or to change your communications preferences,
|
431
|
+
http://www.connectcommerce.com/partner/communications.html
|
432
|
+
click here .
|
433
|
+
|
434
|
+
If you have trouble viewing the images in this newsletter, please add the sender to your "safe senders" list and/or click above to view the newsletter as a web page.
|
435
|
+
|
436
|
+
(c) 2010 Google Affiliate Network
|
437
|
+
|
438
|
+
Google Affiliate Network
|
439
|
+
1600 Amphitheatre Parkway
|
440
|
+
Mountain View, CA 94043
|
441
|
+
|
442
|
+
|
443
|
+
|
444
|
+
----------------------------------------
|
445
|
+
|
446
|
+
This email was sent by:
|
447
|
+
Google Affiliate Network
|
448
|
+
1600 Amphitheatre Parkway
|
449
|
+
Mountain View, CA, 94043, USA
|
450
|
+
|
451
|
+
We respect your right to privacy - visit the following URL to view our policy.
|
452
|
+
( http://email.exacttarget.com/Company/Policies/PrivacyPolicy.html?linkid=View+Privacy+Policy )
|
453
|
+
|
454
|
+
----------------------------------------
|
455
|
+
|
456
|
+
Visit the following URL to manage your subscriptions.
|
457
|
+
( http://click.emailcomm-google.com/subscription_center.aspx?s=fe20117572630d7f761578&j=fe6315717c66047b7010&mid=fef511747d6702&l=fe9216737065037a71&jb=ffcf14&ju= )
|
458
|
+
|
459
|
+
Visit the following URL to update your profile.
|
460
|
+
( http://click.emailcomm-google.com/profile_center.aspx?s=fe20117572630d7f761578&mid=fef511747d6702&j=fe6315717c66047b7010&l=fe9216737065037a71&jb=ffcf14&ju= )
|
461
|
+
|
462
|
+
Visit the following URL to unsubscribe.
|
463
|
+
( http://click.emailcomm-google.com/unsub_center.aspx?s=fe20117572630d7f761578&j=fe6315717c66047b7010&mid=fef511747d6702&lid=fe9216737065037a71&jb=ffcf14&ju= )
|
464
|
+
|
465
|
+
|
466
|
+
--w2OvAftNDvCz=_?:
|
467
|
+
Content-Type: text/html;
|
468
|
+
charset="us-ascii"
|
469
|
+
Content-Transfer-Encoding: 7bit
|
470
|
+
|
471
|
+
<HTML><P><center><table width="600" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="100%" align="center"> <font face="verdana" size="1" color="#444444"> To view this email as a web page, go <a href="http://click.emailcomm-google.com/?ju=fe2d15707d6c0778731770&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" > here.</a><br> </font> </td> </tr> </table> </center></P><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
472
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
473
|
+
<head>
|
474
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
475
|
+
<title>Google Affiliate Network Newsletter</title>
|
476
|
+
<style type="text/css">
|
477
|
+
a:link { color:#0000cc; text-decoration:none;}
|
478
|
+
a:visited { color:#551a8b; }
|
479
|
+
a:hover {text-decoration:underline;}
|
480
|
+
</style>
|
481
|
+
</head><body>
|
482
|
+
|
483
|
+
|
484
|
+
<table width="625px" align="center" cellpadding="0" cellspacing="0" style="padding:20px;">
|
485
|
+
<tr><td style="border:2px solid #ccc;" align="left" valign="top">
|
486
|
+
<table width="100%" cellpadding="10">
|
487
|
+
<tr><td align="left" valign="top" style="padding:20px;padding-bottom:10px;"><table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table width="100%" bgColor="" border="0" borderColor="" cellPadding="0" cellSpacing="0"><tr><td style="font-family:Arial; font-size:13px"><TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
|
488
|
+
<TBODY>
|
489
|
+
<TR>
|
490
|
+
<TD vAlign=bottom align=left><IMG title="AffNetwork logo small" style="BORDER-LEFT-COLOR: #000000; BORDER-BOTTOM-COLOR: #000000; MARGIN: 0px; WIDTH: 219px; BORDER-TOP-COLOR: #000000; HEIGHT: 30px; BORDER-RIGHT-COLOR: #000000" height=30 alt="AffNetwork logo small" src="http://image.emailcomm-google.com/lib/fef511747d6702/i/10/ff46d50c-9.JPG" width=219 border=0 thid="589040"></TD>
|
491
|
+
<TD style="WHITE-SPACE: normal" vAlign=bottom align=right>
|
492
|
+
<P style="FONT-SIZE: 13px; FONT-FAMILY: arial">December 1, 2010 </P></TD></TR></TBODY></TABLE>
|
493
|
+
<HR color=#cccccc SIZE=1></td></tr></table></td></tr></table></td></tr>
|
494
|
+
<tr><td style="padding:0px 20px;"><table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px">
|
495
|
+
|
496
|
+
|
497
|
+
|
498
|
+
<span style="font-weight: bold; font-family: Arial;">New programs available through <font class="word"><font class="word">Google</font></font> Affiliate Network:<br>
|
499
|
+
<br>
|
500
|
+
<br>
|
501
|
+
</span>
|
502
|
+
<table style="border: 1px solid rgb(238, 238, 238); font-family: Arial; width: 683px; height: 357px;" class="" align="center" bgcolor="" border="0" cellpadding="0" cellspacing="0">
|
503
|
+
<tbody>
|
504
|
+
<tr>
|
505
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
506
|
+
<p>
|
507
|
+
<a style="font-weight: bold;" href="#Dallas%20Gold%20&%20Silver%20Exchange" title="Dallas Gold & Silver Exchange" alias="Dallas Gold & Silver Exchange" conversion="undefined">Dallas Gold & Silver<br>
|
508
|
+
Exchange</a><br>
|
509
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000312418/0/88000000000197067.jpg" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
510
|
+
</p>
|
511
|
+
</td>
|
512
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
513
|
+
<p>
|
514
|
+
<a style="font-weight: bold;" href="#Kernel%20Fabyan%27s%20Gourmet%20Popcorn" title="Kernel Fabyan's Gourmet Popcorn" alias="Kernel Fabyan's Gourmet Popcorn" conversion="undefined">Kernel Fabyan's <br>
|
515
|
+
Gourmet Popcorn</a><br>
|
516
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000318477/0/88000000000198971.jpg" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
517
|
+
</p>
|
518
|
+
</td>
|
519
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
520
|
+
<p>
|
521
|
+
<a style="font-weight: bold;" href="#JewelClub.com" title="JewelClub.com" alias="JewelClub.com" conversion="undefined">JewelClub.com</a><br>
|
522
|
+
<img style="width: 136px; height: 40px;" src="http://affiliate.2mdn.net/media/21000000000316406/0/88000000000199341.jpg" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
523
|
+
</p>
|
524
|
+
</td>
|
525
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
526
|
+
<p>
|
527
|
+
<a style="font-weight: bold;" href="#CatholicSingles.com" title="CatholicSingles.com" alias="CatholicSingles.com" conversion="undefined">Catholic<br>
|
528
|
+
Singles.com</a><br>
|
529
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000315059/0/88000000000199516.gif" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
530
|
+
</p>
|
531
|
+
</td>
|
532
|
+
</tr>
|
533
|
+
<tr>
|
534
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
535
|
+
<p>
|
536
|
+
<a style="font-weight: bold;" href="#Relic%20Brand" title="Relic Brand" alias="Relic Brand" conversion="undefined">Relic Brand</a><br>
|
537
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000316084/0/88000000000199685.jpg" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
538
|
+
</p>
|
539
|
+
</td>
|
540
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
541
|
+
<p>
|
542
|
+
<a style="font-weight: bold;" href="#Tactics.com" title="Tactics.com" alias="Tactics.com" conversion="undefined">Tactics.com</a><br>
|
543
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000314529/0/88000000000200393.gif" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
544
|
+
</p>
|
545
|
+
</td>
|
546
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
547
|
+
<p>
|
548
|
+
<a style="font-weight: bold;" href="#True%20Religion%20Brand%20Jeans" title="True Religion Brand Jeans" alias="True Religion Brand Jeans" conversion="undefined">True Religion Brand <br>
|
549
|
+
Jeans</a><br>
|
550
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000314894/0/88000000000201845.gif" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
551
|
+
</p>
|
552
|
+
</td>
|
553
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
554
|
+
<p>
|
555
|
+
<a style="font-weight: bold;" href="#Wayside%20Gardens" title="Wayside Gardens" alias="Wayside Gardens" conversion="undefined">Wayside Gardens</a><br>
|
556
|
+
<img style="width: 120px; height: 60px;" src="http://images.parkseed.com/affiliates/WG/120x60LOGO.gif" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120">
|
557
|
+
</p>
|
558
|
+
</td>
|
559
|
+
</tr>
|
560
|
+
<tr>
|
561
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
562
|
+
<div style="text-align: center;">
|
563
|
+
</div>
|
564
|
+
<div style="text-align: center;">
|
565
|
+
<br>
|
566
|
+
<a style="font-weight: bold;" href="#Magic%20Murals" title="Magic Murals" alias="Magic Murals" conversion="undefined">Magic Murals</a><br>
|
567
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000317153/0/88000000000199599.jpg" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
568
|
+
<p>
|
569
|
+
</p>
|
570
|
+
</div>
|
571
|
+
</td>
|
572
|
+
<td style="border: 1px solid rgb(238, 238, 238); padding: 10px; font-size: 13px;">
|
573
|
+
<p>
|
574
|
+
<a style="font-weight: bold;" href="#Boomer%20Medical" title="Boomer Medical" alias="Boomer Medical" conversion="undefined">Boomer Medical</a><br>
|
575
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000290111/0/88000000000202650.png" title="120x60" alt="120x60" border="0" height="60" hspace="0" vspace="0" width="120"><br>
|
576
|
+
</p>
|
577
|
+
</td>
|
578
|
+
</tr>
|
579
|
+
</tbody>
|
580
|
+
</table>
|
581
|
+
<br>
|
582
|
+
<hr color="#c0c0c0" size="1">
|
583
|
+
<table style="width: 664px; height: 393px; font-family: Arial;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
584
|
+
<tbody>
|
585
|
+
<tr>
|
586
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
587
|
+
<p>
|
588
|
+
<a name="Dallas Gold & Silver Exchange" title="Dallas Gold & Silver Exchange" class="bookmark" style="text-decoration: none; font-weight: bold;">Dallas Gold & Silver Exchange</a><br>
|
589
|
+
<img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000312418/0/88000000000197067.jpg" alt="Company Banner" border="0"><br>
|
590
|
+
Commission: 8%<br>
|
591
|
+
CD: 30 Days<br>
|
592
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312418" href="http://click.emailcomm-google.com/?ju=fe2c15707d6c0778731771&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
593
|
+
</p>
|
594
|
+
</td>
|
595
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
596
|
+
<p>
|
597
|
+
<b>Program Highlights:</b>
|
598
|
+
</p>
|
599
|
+
<ul style="color: rgb(0, 0, 0);">
|
600
|
+
<li>8% commission</li>
|
601
|
+
<li>Commission duration 30 days<br>
|
602
|
+
</li>
|
603
|
+
<li><font class="word">$450 </font><font class="word">average order value <br>
|
604
|
+
</font></li>
|
605
|
+
<li><font class="word">Free shipping & returns</font></li>
|
606
|
+
<li><font class="word">Exclusive ongoing promotions on various brands<br>
|
607
|
+
</font></li>
|
608
|
+
<li><font class="word">Over 3,000 SKUs</font></li>
|
609
|
+
<li><font class="word"><font class="word">BYOL</font></font> available</li>
|
610
|
+
</ul>
|
611
|
+
<span style="font-weight: bold;"></span>
|
612
|
+
<font class="word">Dallas Gold & Silver Exchange is one of the United States' largest retailers of new and pre-owned Jewelry, Fine Watches, Diamonds, Rare Coins, Bullion and Collectibles. Over the last 30+ years we have gained and kept tens of thousands of clients because of our wide variety of inventory and wholesale level pricing.<br>
|
613
|
+
<span style="font-weight: bold;"></span><span style="font-weight: bold;"></span><br>
|
614
|
+
Our brands include: Rolex, Tiffany & Co, Cartier, Breitling, Patek Phillipe, Baume & Mercier, Tag Heuer, James Avery, John Hardy, Judith Ripka and more</font>.<br>
|
615
|
+
<p>
|
616
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2b15707d6c0778731772&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.dgse.com">http://www.dgse.com</a>
|
617
|
+
</p>
|
618
|
+
<p style="font-weight: bold;">
|
619
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312418" href="http://click.emailcomm-google.com/?ju=fe2c15707d6c0778731771&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join the Dallas Gold & Silver Exchange affiliate program</a>
|
620
|
+
</p>
|
621
|
+
<p style="font-weight: bold;">
|
622
|
+
<span style="font-weight: bold;">Contact</span>: <a conversion="undefined" alias="dclem@dgse.com" style="font-weight: normal;" href="mailto:dclem@dgse.com" title="dclem@dgse.com">dclem@dgse.com</a>
|
623
|
+
</p>
|
624
|
+
<span style="font-weight: bold;"></span></td>
|
625
|
+
</tr>
|
626
|
+
</tbody>
|
627
|
+
</table>
|
628
|
+
<br style="font-family: Arial;">
|
629
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
630
|
+
<table style="width: 662px; height: 265px; font-family: Arial;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
631
|
+
<tbody>
|
632
|
+
<tr>
|
633
|
+
</tr>
|
634
|
+
<tr>
|
635
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
636
|
+
<p>
|
637
|
+
<a name="Kernel Fabyan's Gourmet Popcorn" title="Kernel Fabyan's Gourmet Popcorn" class="bookmark" style="text-decoration: none; font-weight: bold;">Kernel Fabyan's Gourmet Popcorn</a><br>
|
638
|
+
<img style="width: 113px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000318477/0/88000000000198971.jpg" alt="Company Banner" border="0"><br>
|
639
|
+
Commission: 10%<br>
|
640
|
+
CD: 30 Days<br>
|
641
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000318477" href="http://click.emailcomm-google.com/?ju=fe2a15707d6c0778731773&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
642
|
+
</p>
|
643
|
+
</td>
|
644
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
645
|
+
<p>
|
646
|
+
<b>Program Highlights:</b>
|
647
|
+
</p>
|
648
|
+
<ul style="color: rgb(0, 0, 0);">
|
649
|
+
<li>10% commission</li>
|
650
|
+
<li>Commission duration 30 days</li>
|
651
|
+
<li>Frequent and powerful promotions</li>
|
652
|
+
<li>Provide exclusive offers</li>
|
653
|
+
<li><font class="word"><font class="word">BYOL</font></font> available</li>
|
654
|
+
</ul>
|
655
|
+
At Kernel Fabyan's we use only the highest quality ingredients to make the best gourmet popcorn fresh daily. This way, whether you enjoy our popcorn yourself or give it as a gift, you can be confident that you are getting the very best!<br>
|
656
|
+
<br>
|
657
|
+
Kernel Fabyan's Gourmet Popcorn is ideal for every gift-giving occasion. Built-to-order<br>
|
658
|
+
popcorn gifts in attractive tins make perfect corporate gifts and our gourmet popcorn party favors will make your wedding, baby shower, fund raiser or any gathering even more festive!<br>
|
659
|
+
<br>
|
660
|
+
For all new publishers who drive their first transaction this holiday season on kernelfabyans.com, we will send you a free gourmet popcorn tin filled with our customers' favorite - the
|
661
|
+
Classic Mix, a delicious combination of caramel and golden cheddar
|
662
|
+
popcorn.
|
663
|
+
<p>
|
664
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2915707d6c0778731774&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.kernelfabyans.com/">http://www.kernelfabyans.com/</a>
|
665
|
+
</p>
|
666
|
+
<p style="font-weight: bold;">
|
667
|
+
<a href="http://click.emailcomm-google.com/?ju=fe2a15707d6c0778731773&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000318477" >Join the Kernel Fabyan's Gourmet Popcorn affiliate program</a>
|
668
|
+
</p>
|
669
|
+
<span style="font-weight: bold;">Contact</span>: <a conversion="undefined" alias="pdillonkf@gmail.com" href="mailto:pdillonkf@gmail.com" title="pdillonkf@gmail.com">pdillonkf@gmail.com</a></td>
|
670
|
+
</tr>
|
671
|
+
</tbody>
|
672
|
+
</table>
|
673
|
+
<br style="font-family: Arial;">
|
674
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
675
|
+
<table style="width: 659px; height: 261px; font-family: Arial;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
676
|
+
<tbody>
|
677
|
+
<tr>
|
678
|
+
</tr>
|
679
|
+
<tr>
|
680
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
681
|
+
<p>
|
682
|
+
<a name="JewelClub.com" title="JewelClub.com" class="bookmark" style="text-decoration: none; font-weight: bold;">JewelClub.com</a><br>
|
683
|
+
<img style="width: 136px; height: 40px;" src="http://affiliate.2mdn.net/media/21000000000316406/0/88000000000199341.jpg" alt="Company Banner" border="0"><br>
|
684
|
+
Commission: 7.5%<br>
|
685
|
+
CD: 30 Days<br>
|
686
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316406" href="http://click.emailcomm-google.com/?ju=fe2815707d6c0778731775&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
687
|
+
</p>
|
688
|
+
</td>
|
689
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
690
|
+
<p>
|
691
|
+
<b>Program Highlights:</b>
|
692
|
+
</p>
|
693
|
+
<ul style="color: rgb(0, 0, 0);">
|
694
|
+
<li>7.5% commission</li>
|
695
|
+
<li>Commission duration 30 days</li>
|
696
|
+
<li>New items added daily</li>
|
697
|
+
<li>The JewelClub Daily Giveaway & The JewelClub Daily Deal offers<br>
|
698
|
+
</li>
|
699
|
+
<li>Free shipping and free gift box<br>
|
700
|
+
</li>
|
701
|
+
<li><font class="word"><font class="word">BYOL</font></font> available <br>
|
702
|
+
</li>
|
703
|
+
</ul>
|
704
|
+
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Arial; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; font-size: 13px;"></span></span><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial,sans-serif; font-size: 13px;">
|
705
|
+
<div style="font-family: Arial;">
|
706
|
+
JewelClub is a member only website serving our employees and their invited friends and family. One perk of working at a jewelry company is that you can get your hands on stunning jewels at below-wholesale prices. Our employee and friends & family site is now open to new members. This members-only site features amazing jewels at unbelieveable prices, with new styles added daily. Our Customer Service Department is ready to assist you.
|
707
|
+
</div>
|
708
|
+
<div>
|
709
|
+
<div style="font-family: Arial;">
|
710
|
+
<br>
|
711
|
+
</div>
|
712
|
+
<div style="font-family: Arial;">
|
713
|
+
The site offers employees and their guests the benefit of purchasing quality fine jewelry produced in our factories around the world. The selection consists of diamonds, gemstones, pearls, gold and silver priced at or below wholesale. Items on JewelClub are primarily excess inventory or samples. For this reason, the offering on JewelClub changes daily and availability of certain items is limited. All of our products come with a 30-day money back guarantee<span style="font-weight: bold;">.</span>
|
714
|
+
</div>
|
715
|
+
<p>
|
716
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2715707d6c0778731776&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.jewelclub.com" >http://www.jewelclub.com</a>
|
717
|
+
</p>
|
718
|
+
<p style="font-weight: bold;">
|
719
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316406" href="http://click.emailcomm-google.com/?ju=fe2815707d6c0778731775&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join the JewelClub.com affiliate program</a>
|
720
|
+
</p>
|
721
|
+
<span style="font-weight: bold;">Contact</span>: <a conversion="undefined" alias="customerservice@jewelclub.com" href="mailto:customerservice@jewelclub.com" title="customerservice@jewelclub.com">customerservice@jewelclub.com</a><span style="font-weight: bold;"></span><span style="text-decoration: underline;"></span>
|
722
|
+
</div>
|
723
|
+
</span></span></td>
|
724
|
+
</tr>
|
725
|
+
</tbody>
|
726
|
+
</table>
|
727
|
+
<br style="font-family: Arial;">
|
728
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
729
|
+
<a name=" Gilt Groupe, Inc." title=" Gilt Groupe, Inc." class="bookmark" style="text-decoration: none;">
|
730
|
+
</a>
|
731
|
+
<table style="width: 662px; height: 279px; font-family: Arial;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
732
|
+
<tbody>
|
733
|
+
<tr>
|
734
|
+
</tr>
|
735
|
+
<tr>
|
736
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
737
|
+
<p>
|
738
|
+
<a name="CatholicSingles.com" title="CatholicSingles.com" class="bookmark" style="text-decoration: none; color: rgb(0, 0, 0); font-weight: bold;">CatholicSingles.com</a><br>
|
739
|
+
<span style="font-weight: bold; color: rgb(0, 0, 0);"></span><img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000315059/0/88000000000199516.gif" alt="88000000000195988" thid="6f6e59eb-661a-44ff-bfae-ec992e1d642c" border="0" hspace="0" vspace="0"><br>
|
740
|
+
Bounty: $8-$20<br>
|
741
|
+
CD: 30 Days<br>
|
742
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000315059" href="http://click.emailcomm-google.com/?ju=fe2615707d6c0778731777&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
743
|
+
</p>
|
744
|
+
</td>
|
745
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
746
|
+
<p>
|
747
|
+
<b>Program Highlights:</b>
|
748
|
+
</p>
|
749
|
+
<ul style="color: rgb(0, 0, 0);">
|
750
|
+
<li>$8-$20 bounty per membership sign-up<br>
|
751
|
+
</li>
|
752
|
+
<li>Commission duration 30 days</li>
|
753
|
+
</ul>
|
754
|
+
Help singles find faith, friendship, and love at CatholicSingles.com - the home for Catholic Singles on the Web - and find yourself making some great commissions when you join as an affiliate.<br>
|
755
|
+
<br>
|
756
|
+
Since 1997, CatholicSingles.com has been THE Internet meeting place for Catholic singles. With more Catholic singles online than any other site, CatholicSingles.com is a true Catholic community, and the best choice for finding that special someone who shares the same faith and values.<br>
|
757
|
+
<br>
|
758
|
+
As a wholly-owned Catholic site, CatholicSingles.com offers members a Compatibility Test, Catholic news and weekly columns from clergy and staff, a Personal Profile Page with unlimited photo uploads, live chat rooms, private email accounts, member searches, opportunities to participate in special events, and much more. With privacy controls and great prices on monthly memberships, singles can soon find their soul mate at CatholicSingles.com.<br>
|
759
|
+
<p>
|
760
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2515707d6c0778731778&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.catholicsingles.com " >http://www.catholicsingles.com
|
761
|
+
</a>
|
762
|
+
</p>
|
763
|
+
<p style="font-weight: bold;">
|
764
|
+
<a href="http://click.emailcomm-google.com/?ju=fe2615707d6c0778731777&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000315059">Join the <font class="word"><font class="word">CatholicSingles.com</font></font> affiliate program</a>
|
765
|
+
</p>
|
766
|
+
<span style="font-weight: bold;">Contact</span>: <a href="mailto:catholicsingles@eaccountable.com" title="catholicsingles@eaccountable.com" alias="catholicsingles@eaccountable.com" conversion="undefined">catholicsingles@eaccountable.com</a></td>
|
767
|
+
</tr>
|
768
|
+
</tbody>
|
769
|
+
</table>
|
770
|
+
<br style="font-family: Arial;">
|
771
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
772
|
+
<table style="width: 664px; height: 228px; font-family: Arial;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
773
|
+
<tbody>
|
774
|
+
<tr>
|
775
|
+
</tr>
|
776
|
+
<tr>
|
777
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
778
|
+
<p>
|
779
|
+
<a name="Relic Brand" title="Relic Brand" class="bookmark" style="text-decoration: none; font-weight: bold;">Relic Brand</a><br>
|
780
|
+
<img style="width: 129px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000316084/0/88000000000199685.jpg" alt="Company Banner" border="0"><br>
|
781
|
+
Commission: 10%<br>
|
782
|
+
CD: 30 Days<br>
|
783
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316084" href="http://click.emailcomm-google.com/?ju=fe2415707d6c0778731779&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
784
|
+
</p>
|
785
|
+
</td>
|
786
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
787
|
+
<p>
|
788
|
+
<b>Program Highlights:</b>
|
789
|
+
</p>
|
790
|
+
<ul style="color: rgb(0, 0, 0);">
|
791
|
+
<li>10% commission<br>
|
792
|
+
</li>
|
793
|
+
<li>Commission duration 30 days</li>
|
794
|
+
<li><font class="word"><font class="word">BYOL</font></font> available</li>
|
795
|
+
</ul>
|
796
|
+
Since 1992, Relic has appealed to style-conscious consumers seeking trend-right fashion. Our in-house team of Relic designers stay continually abreast of the modern fashion scene, crafting collections that define our signature contemporary casual design aesthetic.<br>
|
797
|
+
<font size="2"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Arial; font-size: 10px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"><span class="Apple-style-span" style="font-size: 12px;"></span></span></font>
|
798
|
+
<font size="2"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Arial; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; font-size: 13px;">
|
799
|
+
</span></span></font>
|
800
|
+
<p>
|
801
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2c15707d6c0778731070&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.relicbrand.com" >http://www.relicbrand.com</a>
|
802
|
+
</p>
|
803
|
+
<p style="font-weight: bold;">
|
804
|
+
<a href="http://click.emailcomm-google.com/?ju=fe2415707d6c0778731779&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000316084" >Join the Relic Brand affiliate program</a>
|
805
|
+
</p>
|
806
|
+
<span style="font-weight: bold;">Contact</span>: <a href="mailto:relic-affiliates@google.com" title="relic-affiliates@google.com" alias="relic-affiliates@google.com" conversion="undefined">relic-affiliates@google.com</a><span style="text-decoration: underline;"></span></td>
|
807
|
+
</tr>
|
808
|
+
</tbody>
|
809
|
+
</table>
|
810
|
+
<br style="font-family: Arial;">
|
811
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
812
|
+
<table style="width: 664px; height: 355px;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
813
|
+
<tbody>
|
814
|
+
<tr>
|
815
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
816
|
+
<p>
|
817
|
+
<a name="Tactics.com" title="Tactics.com" class="bookmark" style="text-decoration: none; font-weight: bold;">Tactics.com</a><img style="width: 116px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000314529/0/88000000000200393.gif" alt="Company Banner" border="0"><br>
|
818
|
+
Commission: 7%<br>
|
819
|
+
CD: 30 Days<br>
|
820
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314529" href="http://click.emailcomm-google.com/?ju=fe2b15707d6c0778731071&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
821
|
+
</p>
|
822
|
+
</td>
|
823
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
824
|
+
<p>
|
825
|
+
<b>Program Highlights:</b>
|
826
|
+
</p>
|
827
|
+
<ul style="color: rgb(0, 0, 0);">
|
828
|
+
<li>7% commission<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial,helvetica,sans-serif; font-size: 13px;"><br>
|
829
|
+
</span></span></li><li>Commission duration 30 days</li>
|
830
|
+
<li><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial,helvetica,sans-serif; font-size: 13px;">Special offers and significant discounts for your visitors</span></span></li>
|
831
|
+
<li>BYOL available<br>
|
832
|
+
</li>
|
833
|
+
</ul>
|
834
|
+
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium;"><span class="Apple-style-span" style="border-collapse: collapse; font-family: arial,helvetica,sans-serif; font-size: 13px;">Since 1999, Tactics has served tens of thousands of customers around the world, growing to become one of the largest online snow/skate/surf/street specialty stores in the country. Tactics prides themselves in providing courteous, informed and professional customer service and consistently fulfilling their promise to deliver quality gear and clothing to customer's doorsteps, quickly and accurately.<br>
|
835
|
+
<br>
|
836
|
+
The Tactics affiliate program is a great way to earn commissions on everything from skateboard decks and accessories, to snowboards, boots, bindings and outerwear, plus surf gear and wetsuits. Tactics' broad selection also includes men's and women's clothing and footwear by 250 top-selling brands.<br>
|
837
|
+
</span></span>
|
838
|
+
<p>
|
839
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2a15707d6c0778731072&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.tactics.com/">http://www.tactics.com/</a>
|
840
|
+
</p>
|
841
|
+
<p style="font-weight: bold;">
|
842
|
+
<a href="http://click.emailcomm-google.com/?ju=fe2b15707d6c0778731071&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314529">Join the Tactics.com affiliate program</a>
|
843
|
+
</p>
|
844
|
+
<span style="font-weight: bold;">Contact</span>: <a href="mailto:tactics@affiliatetraction.com" title="tactics@affiliatetraction.com" alias="tactics@affiliatetraction.com" conversion="undefined">tactics@affiliatetraction.com</a></td>
|
845
|
+
</tr>
|
846
|
+
</tbody>
|
847
|
+
</table>
|
848
|
+
<br style="font-family: Arial;">
|
849
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
850
|
+
<table style="width: 666px; height: 390px;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
851
|
+
<tbody>
|
852
|
+
<tr>
|
853
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
854
|
+
<p>
|
855
|
+
<a name="True Religion Brand Jeans" title="True Religion Brand Jeans" class="bookmark" style="text-decoration: none; font-weight: bold;">True Religion<br>
|
856
|
+
Brand Jeans</a><span style="color: rgb(0, 0, 0); font-weight: bold;"> </span><img style="width: 120px; height: 60px;" src="http://affiliate.2mdn.net/media/21000000000314894/0/88000000000201845.gif" alt="Company Banner" border="0"><br>
|
857
|
+
Commission: 7%<br>
|
858
|
+
CD: 30 Days<br>
|
859
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314894" href="http://click.emailcomm-google.com/?ju=fe2915707d6c0778731073&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
860
|
+
</p>
|
861
|
+
</td>
|
862
|
+
<td style="font-size: 13px; font-family: Arial;" align="left" valign="top">
|
863
|
+
<p>
|
864
|
+
<b>Program Highlights:</b>
|
865
|
+
</p>
|
866
|
+
<ul style="color: rgb(0, 0, 0);">
|
867
|
+
<li>7% commission<br>
|
868
|
+
</li>
|
869
|
+
<li>Commission duration 30 days</li>
|
870
|
+
<li>BYOL available<br>
|
871
|
+
</li>
|
872
|
+
</ul>
|
873
|
+
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-size: medium; font-family: Arial;"><span class="Apple-style-span" style="border-collapse: collapse; font-size: 13px;">Jeffrey Lubell founded True Religion in 2002 with the intention of redefining premium denim. His vision was to make quality, American-made, authentic, timeless, great fitting, 1970's inspired jeans wear, with a trendsetting appeal for today's consumer.<br>
|
874
|
+
<br>
|
875
|
+
Today, True Religion Brand Jeans is known not only for its denim, but also for its knit and woven sportswear, such as t-shirts, western shirts, sweatshirts and sweatpants that all have that vintage feel.True Religion's commitment to perfect fit, timeless style and that hippie bohemian chic flair have solidified True Religion's brand position as a leader in premium denim and casual sportswear globally.<br>
|
876
|
+
<br>
|
877
|
+
While continuing to expand True Religion's line of jeans and sportswear, the company also branched out into numerous licensed products such as Footwear, Headwear, Swimwear, Eyewear, Hosiery, Socks, and Fragrance.<br>
|
878
|
+
</span></span>
|
879
|
+
<p>
|
880
|
+
<span style="font-weight: bold;"><font class="word">Website</font></span>: <a href="http://click.emailcomm-google.com/?ju=fe2815707d6c0778731074&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.truereligionbrandjeans.com" >http://www.truereligionbrandjeans.com</a>
|
881
|
+
</p>
|
882
|
+
<p style="font-weight: bold;">
|
883
|
+
<a href="http://click.emailcomm-google.com/?ju=fe2915707d6c0778731073&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000314894">Join the True Religion Brand Jeans affiliate program</a>
|
884
|
+
</p>
|
885
|
+
<span style="font-weight: bold;">Contact</span>: <a href="mailto:onestopamc@gmail.com" title="onestopamc@gmail.com" alias="onestopamc@gmail.com" conversion="undefined">onestopamc@gmail.com</a><a href="mailto:shopdirectbrands@eaccountable.com" title="shopdirectbrands@eaccountable.com" alias="shopdirectbrands@eaccountable.com" conversion="undefined"></a></td>
|
886
|
+
</tr>
|
887
|
+
</tbody>
|
888
|
+
</table>
|
889
|
+
<br style="font-family: Arial;">
|
890
|
+
<hr style="font-family: Arial;" color="#c0c0c0" size="1">
|
891
|
+
<table style="width: 668px; height: 353px;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
892
|
+
<tbody>
|
893
|
+
<tr>
|
894
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
895
|
+
<p>
|
896
|
+
<a name="Wayside Gardens" title="Wayside Gardens" class="bookmark" style="text-decoration: none; font-weight: bold;">Wayside Gardens</a><br>
|
897
|
+
<img src="http://images.parkseed.com/affiliates/WG/120x60LOGO.gif" alt="Company Banner" border="0" height="60" width="120"><br>
|
898
|
+
Commission: 4.5%<br>
|
899
|
+
CD: 30 Days<br>
|
900
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000312722" href="http://click.emailcomm-google.com/?ju=fe2715707d6c0778731075&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
901
|
+
</p>
|
902
|
+
</td>
|
903
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
904
|
+
<p>
|
905
|
+
<b>Program Highlights:</b>
|
906
|
+
</p>
|
907
|
+
<ul style="color: rgb(0, 0, 0);">
|
908
|
+
<li>4.5% commission<br>
|
909
|
+
</li>
|
910
|
+
<li>Commission duration 30 days</li>
|
911
|
+
<li>BYOL available</li>
|
912
|
+
</ul>
|
913
|
+
<p>
|
914
|
+
Your visitors will be delighted to discover a link to Wayside Gardens on your site, because they'll know that a superb selection of perennials, flowering plants, trees, shrubs, ground covers, and bulbs is just a click away. Serious gardeners appreciate the Wayside Gardens commitment to quality plants, sound roots, and unusual varieties. <br>
|
915
|
+
</p>
|
916
|
+
<p>
|
917
|
+
If your visitors are true garden enthusiasts, they will be pleased with Wayside Gardens' carefully selected offering of shade perennials, sun perennials, container plants, fruit trees, deer-resistant plants, evergreens, and bulbs. To be offered by Wayside Gardens, a plant must meet the rigorous horticultural and aesthetic standards of renowned hybridizer, author, and gardening consultant, John Elsley. Your site's visitors deserve the best, and Wayside Gardens delivers.
|
918
|
+
</p>
|
919
|
+
<p>
|
920
|
+
<span style="font-weight: bold;">Website:</span> <a href="http://click.emailcomm-google.com/?ju=fe2615707d6c0778731076&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.waysidegardens.com" >http://www.waysidegardens.com</a>
|
921
|
+
</p>
|
922
|
+
<p>
|
923
|
+
</p>
|
924
|
+
<p style="font-weight: bold;"><a href="http://click.emailcomm-google.com/?ju=fe2515707d6c0778731077&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="Join the Wayside Gardens affiliate program" >Join the Wayside Gardens affiliate program</a></p>
|
925
|
+
<span style="font-weight: bold;">Contact</span>: <a href="mailto:affiliate@waysidegardens.com" title="affiliate@waysidegardens.com" alias="affiliate@waysidegardens.com" conversion="undefined">affiliate@waysidegardens.com</a></td>
|
926
|
+
</tr>
|
927
|
+
</tbody>
|
928
|
+
</table>
|
929
|
+
<span style="font-family: Arial;"><br>
|
930
|
+
</span>
|
931
|
+
<hr color="#c0c0c0" size="1">
|
932
|
+
<table style="width: 670px; height: 433px;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
933
|
+
<tbody>
|
934
|
+
<tr>
|
935
|
+
</tr>
|
936
|
+
<tr>
|
937
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
938
|
+
<p>
|
939
|
+
<a name="Magic Murals" title="Magic Murals" class="bookmark" style="text-decoration: none; font-weight: bold;">Magic Murals</a><br>
|
940
|
+
<img src="http://affiliate.2mdn.net/media/21000000000317153/0/88000000000199599.jpg" alt="Company Banner" border="0" height="60" width="120"><br>
|
941
|
+
Commission: 8%<br>
|
942
|
+
CD: 30 Days<br>
|
943
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000317153" href="http://click.emailcomm-google.com/?ju=fe2415707d6c0778731078&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
944
|
+
</p>
|
945
|
+
</td>
|
946
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
947
|
+
<p>
|
948
|
+
<b>Program Highlights:</b>
|
949
|
+
</p>
|
950
|
+
<ul style="color: rgb(0, 0, 0);">
|
951
|
+
<li>8% commission</li><li>Commission duration 30 days</li><li>5% average conversion rate</li><li>$300 average order value</li><li>BYOL available</li></ul>
|
952
|
+
Discover the art of making major commissions when you become an affiliate of MagicMurals.com - the online source of decorative wall murals for homes or professional spaces.<br>
|
953
|
+
<br>
|
954
|
+
No matter the style or subject, you'll find the mural to match at MagicMurals.com. Customers can shop for thousands of easy-to-apply, high-quality wall murals through an extensive gallery that includes images from National Geographic, Lonely Planet Images, and a select group of international photographers and illustrators. <br>
|
955
|
+
<br>
|
956
|
+
From landscapes and nature shots to whimsical designs for the kids, every wall mural at MagicMurals.com is available in two exceptional materials: QuikStik,™ a repositionable and reusable self-adhesive vinyl, or UltraStik™ for a more permanent wallpaper solution. Customers can even create their own murals with a custom mural creator that allows them to upload their favorite image and see it transformed into a gorgeous wall mural made to their specifications. With an emphasis on quality and outstanding customer service, customers can make their vision a reality with a couple of clicks at MagicMurals.com.<br>
|
957
|
+
<p>
|
958
|
+
<span style="font-weight: bold;">Website:</span> <a href="http://click.emailcomm-google.com/?ju=fe2315707d6c0778731079&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.magicmurals.com/">http://www.magicmurals.com/</a>
|
959
|
+
</p>
|
960
|
+
<p>
|
961
|
+
</p>
|
962
|
+
<p style="font-weight: bold;">
|
963
|
+
<a href="http://click.emailcomm-google.com/?ju=fe2415707d6c0778731078&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000317153">Join the Magic Murals affiliate program</a>
|
964
|
+
</p>
|
965
|
+
<span style="font-weight: bold;">Contact</span>: <a conversion="undefined" alias="magicmurals@eaccountable.com" href="mailto:magicmurals@eaccountable.com" title="magicmurals@eaccountable.com">magicmurals@eaccountable.com</a></td>
|
966
|
+
</tr>
|
967
|
+
</tbody>
|
968
|
+
</table>
|
969
|
+
<br>
|
970
|
+
<hr color="#c0c0c0" size="1">
|
971
|
+
<table style="width: 670px; height: 370px;" class="dashedBorder" border="0" cellpadding="2" cellspacing="0">
|
972
|
+
<tbody>
|
973
|
+
<tr>
|
974
|
+
</tr>
|
975
|
+
<tr>
|
976
|
+
<td style="padding: 0px 10px 0px 0px; font-size: 13px;" align="left" bgcolor="" height="" valign="top" width="">
|
977
|
+
<p>
|
978
|
+
<a name="Boomer Medical" title="Boomer Medical" class="bookmark" style="text-decoration: none; font-weight: bold;">Boomer Medical</a><br>
|
979
|
+
<img src="http://affiliate.2mdn.net/media/21000000000290111/0/88000000000202650.png" alt="Company Banner" border="0" height="60" width="120"><br>
|
980
|
+
Commission: 5%<br>
|
981
|
+
CD: 30 Days<br>
|
982
|
+
<a title="www.connectcommerce.com/partner/view_available_client.html?reltype=V&client=21000000000290111" href="http://click.emailcomm-google.com/?ju=fe2b15707d6c0778731170&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">Join Program</a>
|
983
|
+
</p>
|
984
|
+
</td>
|
985
|
+
<td style="font-size: 13px;" align="left" valign="top">
|
986
|
+
<p>
|
987
|
+
<b>Program Highlights:</b>
|
988
|
+
</p>
|
989
|
+
<ul style="color: rgb(0, 0, 0);">
|
990
|
+
<li>5% commission</li><li>Commission duration 30 days</li>
|
991
|
+
<li>28% average conversion rate <br>
|
992
|
+
</li>
|
993
|
+
<li>$200+ average order value <br>
|
994
|
+
</li>
|
995
|
+
<li>Free shipping on orders over $100</li>
|
996
|
+
</ul>
|
997
|
+
Boomer has over 26 years of extensive medical supply retail experience. Our staff consists of highly trained, certified and recognized personnel who have compiled very thoughtful product solutions for practically any physical challenge. We are devoted to helping our customers at every stage of their lifelong journey to health, happiness and success.<br>
|
998
|
+
Link to BoomerMedical.com with confidence knowing that you're customers are shopping with a trusted brand.<br>
|
999
|
+
<br>
|
1000
|
+
Shipping: Items sold are intended for a US-based audience. When purchasing items from outside the US the sale is deemed to have taken place in the United States and is subject to exclusive jurisdiction of the United States Courts under US Law.<br>
|
1001
|
+
<p>
|
1002
|
+
<span style="font-weight: bold;">Website:</span> <a href="http://click.emailcomm-google.com/?ju=fe2a15707d6c0778731171&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="http://www.boomermedical.com">http://www.boomermedical.com</a>
|
1003
|
+
</p>
|
1004
|
+
<p>
|
1005
|
+
</p>
|
1006
|
+
<p style="font-weight: bold;"><a href="http://click.emailcomm-google.com/?ju=fe2915707d6c0778731172&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=" title="Join the Boomer Medical affiliate program" >Join the Boomer Medical affiliate program</a></p>
|
1007
|
+
<span style="font-weight: bold;">Contact</span>: <a conversion="undefined" alias="mes@boomermedical.com" href="mailto:mes@boomermedical.com" title="mes@boomermedical.com">mes@boomermedical.com</a></td>
|
1008
|
+
</tr>
|
1009
|
+
</tbody>
|
1010
|
+
</table>
|
1011
|
+
<br>
|
1012
|
+
<hr color="#c0c0c0" size="1">
|
1013
|
+
<span style="font-family: Arial;">If you have any questions, please don't hesitate to contact us.
|
1014
|
+
</span>
|
1015
|
+
<p style="font-family: Arial;">
|
1016
|
+
Your <font class="word"><font class="word">Google</font></font> Affiliate Network team<span class="HcCDpe"><span class="lDACoc"><br>
|
1017
|
+
</span></span><a href="mailto:affiliatenetwork@google.com?subject=New%20Advertisers" title="affiliatenetwork@google.com">affiliatenetwork@google.com</a>
|
1018
|
+
</p>
|
1019
|
+
|
1020
|
+
|
1021
|
+
|
1022
|
+
|
1023
|
+
|
1024
|
+
|
1025
|
+
|
1026
|
+
</td></tr></table></td></tr></table></td></tr>
|
1027
|
+
<tr><td style="padding:20px;padding-top:10px;"><table cellpadding="0" cellspacing="0" border="0" bordercolor="" width="100%" bgcolor=""><tr><td><table width="100%" bgcolor="" border="0" bordercolor="" cellpadding="0" cellspacing="0"><tr><td style="font-family:Arial; font-size:13px">
|
1028
|
+
|
1029
|
+
<p></p>
|
1030
|
+
<hr size="1" color="#c0c0c0">
|
1031
|
+
|
1032
|
+
<p><font size="1">You are subscribed as dhchoi@gmail.com for this Google Affiliate Network promotional communication as reflected in your communications preferences in ConnectCommerce<sup>SM</sup>. To unsubscribe from Google Affiliate Network promotional communications or to change your communications preferences, <a href="http://click.emailcomm-google.com/?ju=fe2815707d6c0778731173&ls=fde612737c6c067a70117976&m=fef511747d6702&l=fe9216737065037a71&s=fe20117572630d7f761578&jb=ffcf14&t=">click here</a>.<br><br>If you have trouble viewing the images in this newsletter, please add the sender to your "safe senders" list and/or click above to view the newsletter as a web page.</font></p>
|
1033
|
+
<p style="font-family: arial;"><font size="1">© 2010 Google Affiliate Network<br></font></p>
|
1034
|
+
<hr size="1" color="#c0c0c0">
|
1035
|
+
|
1036
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
1037
|
+
<tbody>
|
1038
|
+
<tr>
|
1039
|
+
<td style="padding-right: 5px; font-size: 10px; font-family: arial,sans-serif;" align="right">Google Affiliate Network<br>1600 Amphitheatre Parkway<br>Mountain View, CA 94043</td>
|
1040
|
+
<td style="padding-left: 5px;" align="left"><img title="AffNetwork logo small" style="border-color: rgb(0, 0, 0); margin: 0px; width: 219px; height: 30px;" alt="AffNetwork logo small" src="http://image.emailcomm-google.com/lib/fef511747d6702/i/10/ff46d50c-9.JPG" thid="589040" border="0" height="30" width="219"></td></tr></tbody></table>
|
1041
|
+
|
1042
|
+
</td></tr></table></td></tr></table></td></tr>
|
1043
|
+
</table>
|
1044
|
+
</td></tr></table>
|
1045
|
+
<img src="http://click.emailcomm-google.com/open.aspx?ffcb10-fe6315717c66047b7010-fde612737c6c067a70117976-fef511747d6702-fe9216737065037a71-fe20117572630d7f761578-ffcf14" width="1" height="1">
|
1046
|
+
</body></html></body></html>
|
1047
|
+
|
1048
|
+
--w2OvAftNDvCz=_?:--
|
1049
|
+
|