-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathamazon-message-templates.html
More file actions
998 lines (667 loc) · 61.9 KB
/
Copy pathamazon-message-templates.html
File metadata and controls
998 lines (667 loc) · 61.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
<!DOCTYPE html>
<html>
<head>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-103612072-1', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->
<meta charset="utf-8">
<meta name="google-site-verification" content="true">
<title>Amazon Message Templates | Inesoi Bag Factory</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#3F51B5">
<meta name="keywords" content="amazon,message">
<meta name="description" content="Customer ServiceSmall Business Order Satisfaction123SUBJECT: Thank you for your order and…EVENT: Immediately after deliveredGOAL: Customer Service
1234567891011121314151617Hello [[buyer-name]],First o">
<meta property="og:type" content="article">
<meta property="og:title" content="Amazon Message Templates">
<meta property="og:url" content="http://blog.inesoi.com/amazon-message-templates.html">
<meta property="og:site_name" content="Inesoi Bag Factory">
<meta property="og:description" content="Customer ServiceSmall Business Order Satisfaction123SUBJECT: Thank you for your order and…EVENT: Immediately after deliveredGOAL: Customer Service
1234567891011121314151617Hello [[buyer-name]],First o">
<meta property="og:updated_time" content="2018-08-31T16:34:25.268Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Amazon Message Templates">
<meta name="twitter:description" content="Customer ServiceSmall Business Order Satisfaction123SUBJECT: Thank you for your order and…EVENT: Immediately after deliveredGOAL: Customer Service
1234567891011121314151617Hello [[buyer-name]],First o">
<link rel="alternate" type="application/atom+xml" title="Inesoi Bag Factory" href="/atom.xml">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="/style/style.css?v=1.6.17">
<script>window.lazyScripts=[]</script>
<!-- custom head -->
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2846834382442028",
enable_page_level_ads: true
});
</script>
</head>
<body>
<div id="loading" class="active"></div>
<aside id="menu" class="hide" >
<div class="inner flex-row-vertical">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menu-off">
<i class="icon icon-lg icon-close"></i>
</a>
<div class="brand-wrap" style="background-image:url(/)">
<div class="brand">
<a href="/" class="avatar waves-effect waves-circle waves-light">
<img src="/img/avatar.png">
</a>
<hgroup class="introduce">
<h5 class="nickname">Inesoi Bag Factory</h5>
<a href="mailto:sales@inesoi.com" title="sales@inesoi.com" class="mail">sales@inesoi.com</a>
</hgroup>
</div>
</div>
<div class="scroll-wrap flex-col">
<ul class="nav">
<li class="waves-block waves-effect">
<a href="/" >
<i class="icon icon-lg icon-home"></i>
Home
</a>
</li>
<li class="waves-block waves-effect">
<a href="/archives" >
<i class="icon icon-lg icon-archives"></i>
Archives
</a>
</li>
<li class="waves-block waves-effect">
<a href="/tags/android" >
<i class="icon icon-lg icon-tags"></i>
Tags
</a>
</li>
<li class="waves-block waves-effect">
<a href="/categories/" >
<i class="icon icon-lg icon-th-list"></i>
Categories
</a>
</li>
</ul>
</div>
</div>
</aside>
<main id="main">
<header class="top-header" id="header">
<div class="flex-row">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light on" id="menu-toggle">
<i class="icon icon-lg icon-navicon"></i>
</a>
<div class="flex-col header-title ellipsis">Amazon Message Templates</div>
<div class="search-wrap" id="search-wrap">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="back">
<i class="icon icon-lg icon-chevron-left"></i>
</a>
<input type="text" id="key" class="search-input" autocomplete="off" placeholder="Search">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="search">
<i class="icon icon-lg icon-search"></i>
</a>
</div>
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menuShare">
<i class="icon icon-lg icon-share-alt"></i>
</a>
</div>
</header>
<header class="content-header post-header">
<div class="container fade-scale">
<h1 class="title">Amazon Message Templates</h1>
<h5 class="subtitle">
<time datetime="2018-08-28T16:00:00.000Z" itemprop="datePublished" class="page-time">
2018-08-29
</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Amazon/">Amazon</a></li></ul>
</h5>
</div>
</header>
<div class="container body-wrap">
<aside class="post-widget">
<nav class="post-toc-wrap" id="post-toc">
<h4>TOC</h4>
<ol class="post-toc"><li class="post-toc-item post-toc-level-2"><a class="post-toc-link" href="#Customer-Service"><span class="post-toc-text">Customer Service</span></a><ol class="post-toc-child"><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Small-Business-Order-Satisfaction"><span class="post-toc-text">Small Business Order Satisfaction</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Order-Satisfaction"><span class="post-toc-text">Order Satisfaction</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Order-Confirmation"><span class="post-toc-text">Order Confirmation</span></a></li></ol></li><li class="post-toc-item post-toc-level-2"><a class="post-toc-link" href="#Product-Review"><span class="post-toc-text">Product Review</span></a><ol class="post-toc-child"><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Product-Review-–-Attachment-Bonus-Content"><span class="post-toc-text">[All-In-One] Product Review – Attachment/Bonus Content</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Product-Review-–-Reinforce-Your-Brand"><span class="post-toc-text">[All-In-One] Product Review – Reinforce Your Brand</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Product-Review-–-Follow-Up"><span class="post-toc-text">[All-In-One] Product Review – Follow-Up</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Product-Review-–-Helpful-Tips"><span class="post-toc-text">[All-In-One] Product Review – Helpful Tips</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Product-Review-–-Generic-Thanks"><span class="post-toc-text">[All-In-One] Product Review – Generic Thanks</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Product-Review-–-Product-Information"><span class="post-toc-text">[All-In-One] Product Review – Product Information</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Review-Request-After-Positive-Feedback"><span class="post-toc-text">Review Request After Positive Feedback</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#We-Need-Your-Help"><span class="post-toc-text">We Need Your Help</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Share-Your-Review-With-Others"><span class="post-toc-text">Share Your Review With Others</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Helpful-Review-Request"><span class="post-toc-text">Helpful Review Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Valued-Customer-Review-Request"><span class="post-toc-text">Valued Customer Review Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#7-Days-After-Delivery-Review-Request"><span class="post-toc-text">7 Days After Delivery Review Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Review-Request"><span class="post-toc-text">Review Request</span></a></li></ol></li><li class="post-toc-item post-toc-level-2"><a class="post-toc-link" href="#Seller-Feedback"><span class="post-toc-text">Seller Feedback</span></a><ol class="post-toc-child"><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Seller-Feedback-–-Attachment-Bonus-Content"><span class="post-toc-text">[All-In-One] Seller Feedback – Attachment/Bonus Content</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Seller-Feedback-–-Reinforce-Your-Brand"><span class="post-toc-text">[All-In-One] Seller Feedback – Reinforce Your Brand</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Seller-Feedback-–-Follow-Up"><span class="post-toc-text">[All-In-One] Seller Feedback – Follow-Up</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Seller-Feedback–-Helpful-Tips"><span class="post-toc-text">[All-In-One] Seller Feedback– Helpful Tips</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Seller-Feedback-–-Generic-Thanks"><span class="post-toc-text">[All-In-One] Seller Feedback – Generic Thanks</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#All-In-One-Seller-Feedback-–-Product-Information"><span class="post-toc-text">[All-In-One] Seller Feedback – Product Information</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Small-Business-Feedback-Request"><span class="post-toc-text">Small Business Feedback Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#Quality-Service-Feedback-Request"><span class="post-toc-text">Quality Service Feedback Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#“Tell-Us-How-We-Did-”-Feedback-Request"><span class="post-toc-text">“Tell Us How We Did!” Feedback Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#“Congrats-”-Feedback-Request"><span class="post-toc-text">“Congrats!” Feedback Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#“Mind-Sharing-Your-Experience-”-Feedback-Request"><span class="post-toc-text">“Mind Sharing Your Experience?” Feedback Request</span></a></li><li class="post-toc-item post-toc-level-3"><a class="post-toc-link" href="#10-Second-Feedback-Request"><span class="post-toc-text">10 Second Feedback Request</span></a></li></ol></li></ol>
</nav>
</aside>
<article id="post-amazon-message-templates"
class="post-article article-type-post fade" itemprop="blogPost">
<div class="post-card">
<h1 class="post-card-title">Amazon Message Templates</h1>
<div class="post-meta">
<time class="post-time" title="2018-08-29 00:00:00" datetime="2018-08-28T16:00:00.000Z" itemprop="datePublished">2018-08-29</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Amazon/">Amazon</a></li></ul>
</div>
<div class="post-content" id="post-content" itemprop="postContent">
<h2 id="Customer-Service"><a href="#Customer-Service" class="headerlink" title="Customer Service"></a>Customer Service</h2><h3 id="Small-Business-Order-Satisfaction"><a href="#Small-Business-Order-Satisfaction" class="headerlink" title="Small Business Order Satisfaction"></a>Small Business Order Satisfaction</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Thank you for your order and…</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: Customer Service</div></pre></td></tr></table></figure>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div><div class="line">11</div><div class="line">12</div><div class="line">13</div><div class="line">14</div><div class="line">15</div><div class="line">16</div><div class="line">17</div></pre></td><td class="code"><pre><div class="line">Hello [[buyer-name]],</div><div class="line"></div><div class="line">First of all, thank you for purchasing [[product-name]]. </div><div class="line"></div><div class="line">Our records show your order will arrive today! </div><div class="line"></div><div class="line">As a small company, your satisfaction means everything to our success. Please take a moment to verify that your item arrived safely and intact. If there is any problem with the order, please [[contact-link:let us know]] right away and we'll do what we can to make it right. You can also simply reply to this email.</div><div class="line"></div><div class="line">[[order-link:Your order can be viewed on Amazon.com here.]]</div><div class="line"></div><div class="line">You are important and we want you to feel satisfied with your purchase!</div><div class="line"></div><div class="line">Thanks again!</div><div class="line"></div><div class="line">Sincerely,</div><div class="line"></div><div class="line">**Signature**</div></pre></td></tr></table></figure>
<h3 id="Order-Satisfaction"><a href="#Order-Satisfaction" class="headerlink" title="Order Satisfaction"></a>Order Satisfaction</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Thank you for your order and…</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: Customer Service</div></pre></td></tr></table></figure>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div><div class="line">11</div><div class="line">12</div><div class="line">13</div><div class="line">14</div><div class="line">15</div><div class="line">16</div><div class="line">17</div></pre></td><td class="code"><pre><div class="line">Hello [[buyer-name]],</div><div class="line"></div><div class="line">First of all, thank you for purchasing [[product-name]]. </div><div class="line"></div><div class="line">Our records show your order will arrive by today or soon after! </div><div class="line"></div><div class="line">As a follow-up, if our [[product-name]] should miss your satisfaction, please [[contact-link:contact us]] so we can resolve this as soon as possible. As an option, you can simply reply to our message. </div><div class="line"></div><div class="line">[[order-link:Your order can be viewed on Amazon.com here.]]</div><div class="line"></div><div class="line">You are important and we want you to feel satisfied with your purchase!</div><div class="line"></div><div class="line">Thanks again!</div><div class="line"></div><div class="line">Sincerely,</div><div class="line"></div><div class="line">**Signature**</div></pre></td></tr></table></figure>
<h3 id="Order-Confirmation"><a href="#Order-Confirmation" class="headerlink" title="Order Confirmation"></a>Order Confirmation</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Thanks for your order!</div><div class="line">EVENT: Order confirmed</div><div class="line">GOAL: Customer Service</div></pre></td></tr></table></figure>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div><div class="line">4</div><div class="line">5</div><div class="line">6</div><div class="line">7</div><div class="line">8</div><div class="line">9</div><div class="line">10</div><div class="line">11</div></pre></td><td class="code"><pre><div class="line">Hello [[buyer-name]],</div><div class="line"></div><div class="line">Thank you for purchasing [[product-name]]. Your order will arrive soon! If you notice any issues with [[product-name]], please [[contact-link:contact us]] so we can resolve the issue as fast as possible (you can reply to this message).</div><div class="line"></div><div class="line">[[order-link:Your order can be viewed on Amazon.com here]].</div><div class="line"></div><div class="line">Thanks again!</div><div class="line"></div><div class="line">Sincerely,</div><div class="line"></div><div class="line">**Signature**</div></pre></td></tr></table></figure>
<h2 id="Product-Review"><a href="#Product-Review" class="headerlink" title="Product Review"></a>Product Review</h2><h3 id="All-In-One-Product-Review-–-Attachment-Bonus-Content"><a href="#All-In-One-Product-Review-–-Attachment-Bonus-Content" class="headerlink" title="[All-In-One] Product Review – Attachment/Bonus Content"></a>[All-In-One] Product Review – Attachment/Bonus Content</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your **Ebook/Instruction Guide/Recipe Book/Etc.** is Attached</div><div class="line">EVENT: Immediately after out for delivery</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
It is our pleasure to have you as a customer! We’re excited that you chose **Brand Name** to
provide the **product type such as “mixing bowl set”** you need.
As mentioned on our Amazon sales page, your **Brand Name** purchase includes a **type of
attachment such as ebook, instruction guide/etc.**. We have that for you here. Simply click to
download and save it to your computer or other device.
Inside, you’ll find:
**List 2 or 3 things that are included in the attachment such as “3 important steps to take
before you use your new {product}.”**
Once you read through the attachment, please feel free reply to this email if you have
questions or need assistance with your product.
**Signature**
<b>P.S.</b> How many <b>product reviews</b> did you read when buying your **product type such as “mixing
bowl set”**? Other Amazon shoppers will appreciate your help with <b>evaluating the product you bought</b>.
Hearing other customers’ opinions is a big help when trying to make a decision.
Will you take a minute to [[product-review-link: leave a product review?]] Thanks!
</pre>
<h3 id="All-In-One-Product-Review-–-Reinforce-Your-Brand"><a href="#All-In-One-Product-Review-–-Reinforce-Your-Brand" class="headerlink" title="[All-In-One] Product Review – Reinforce Your Brand"></a>[All-In-One] Product Review – Reinforce Your Brand</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Congratulations on Your **Brand Name** Purchase</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
We’re excited to welcome you to the **Brand Name** community! If this is your first purchase
of a **Brand Name** product, you are in for a unique experience as you get to know and
appreciate the **fill in what your brand stands for, perhaps “quality and luxury” or “sturdiness
and long-lasting workmanship, etc.** behind every product we make.
[[product-name]] is well known for **enter what you’re known for, perhaps “delightfully
distinctive baked treats and confections”.** We’re sure you will agree!
<b>Would you be willing to leave a product review?</b> We’d love for you to [[product-review-link:
share your thoughts about your order]] with other shoppers on Amazon to help them make a
confident buying decision.
<b>Have questions</b> about your product or **Brand Name**? Simply reply to this email and
someone from our team will make it a priority to take care of you.
**Signature**
</pre>
<h3 id="All-In-One-Product-Review-–-Follow-Up"><a href="#All-In-One-Product-Review-–-Follow-Up" class="headerlink" title="[All-In-One] Product Review – Follow-Up"></a>[All-In-One] Product Review – Follow-Up</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Did Your [[product-name]] Arrive?</div><div class="line">EVENT: 2 days after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
We see that your new order was shipped. This is a courtesy follow-up to ensure your
[[product-name]] is everything you hoped it would be!
We appreciate your business and want to make certain you are 100% satisfied. <b>Please reply to this email if you:</b>
- Have general questions about your product.
- Need help with **using/operating** your product.
- Have concerns or issues with your product.
Please contact Amazon via the Amazon website if:
- Your order has not arrived (Amazon handles shipping for us).
- Your package arrived damaged.
As our valued customers, we are always available to you to provide exceptional customer
service.
Did you read any reviews while you were shopping for your [[product-name]]? Most shoppers
do. If you have 2 or 3 minutes today, would you help other Amazon customers by
<b>[[product-review-link: leaving a product review?]]</b> Thanks!
Enjoy!
**Signature**
</pre>
<h3 id="All-In-One-Product-Review-–-Helpful-Tips"><a href="#All-In-One-Product-Review-–-Helpful-Tips" class="headerlink" title="[All-In-One] Product Review – Helpful Tips"></a>[All-In-One] Product Review – Helpful Tips</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Helpful **Tips/Hacks** for Using Your New [[product-name]]</div><div class="line">EVENT: Immediately after shipped</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Your [[product-name]] is on its way and we’re excited for you to **use/eat/etc.** it!
While you probably know it **insert one use/feature/benefit such as “is a sinfully delicious
treat”**, you may not be aware that it:
<br>**INSERT 3-4 HELPFUL TIPS/HACKS/USES THAT CUSTOMERS MAY NOT KNOW ABOUT. Perhaps your gourmet chocolate squares are excellent when melted into a cup of coffee, or your small paint brushes can also be used when decorating cookies, etc.)**
<b>Have questions?</b> Just reply to this email and we’ll be happy to provide additional information.
Thanks for your order!
**Signature**
P.S. Did you know you can share your thoughts about your [[product-name]] on Amazon? It’s simple and easy to [[product-review-link: let others know what you think]]. If you have a couple of minutes today, <b>please leave a product review. Thanks! </b>
</pre>
<h3 id="All-In-One-Product-Review-–-Generic-Thanks"><a href="#All-In-One-Product-Review-–-Generic-Thanks" class="headerlink" title="[All-In-One] Product Review – Generic Thanks"></a>[All-In-One] Product Review – Generic Thanks</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your [[product-name]] Order Made Our Day</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
For small businesses, it’s always exciting to see new orders come through. We celebrate each
one and want to express our deep appreciation for trusting **Company Name** with your
recent [[product-name]] order.
Once your shipment arrives, don’t hesitate to reach out to us if you have questions about
**use, care instructions, maintenance, replacement parts, etc.** We’re always here to ensure
your complete satisfaction!
If you would, please <b>[[product-review-link:leave a product review]]</b> when you’ve had time to
use your [[product-name]]. Your opinion will help other Amazon shoppers make confident
decisions.
Enjoy your day and your new [[product-name]]!
With sincere thanks,
**Signature**
</pre>
<h3 id="All-In-One-Product-Review-–-Product-Information"><a href="#All-In-One-Product-Review-–-Product-Information" class="headerlink" title="[All-In-One] Product Review – Product Information"></a>[All-In-One] Product Review – Product Information</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Important information about your new [[product-name]]</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thanks for your recent order. You’ve made a great choice!
Before you use your new [[product-name]] for the first time, take just a moment to read these
**instructions/safety guidelines/usage tips/helpful hints/etc.** They will help ensure you have the
best experience possible.
**INSERT INFORMATION YOUR CUSTOMERS NEED TO KNOW RIGHT AWAY BEFORE
USING THE PRODUCT.**
**This might be clarification on issues many customers get confused about, feature use tips, etc.
Examples include:
Be sure to wash your new water bottle in <b>hot</b> water and rinse it thoroughly before
drinking from it to eliminate the plastic taste.
The brackets on your car storage bag may not line up with your headrest posts. This is
not a defect. Simply turn the brackets until they align with your headrest.**
Once you follow these simple steps, you’ll be able to use your [[product-name]] and all its
features to the fullest.
——————————
<b>Have 3 minutes?</b> Just like you, other shoppers put a great deal of value in the reviews they read
on Amazon. [[product-review-link: Share your opinion]] of your new [[product-name]] in a
product review today.
——————————
Have questions? Simply reply to this email and we’ll respond quickly with the answers you need.
Enjoy!
**Signature**
</pre>
<h3 id="Review-Request-After-Positive-Feedback"><a href="#Review-Request-After-Positive-Feedback" class="headerlink" title="Review Request After Positive Feedback"></a>Review Request After Positive Feedback</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Thank you!</div><div class="line">EVENT: Immediately after positive feedback</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
I just noticed you left us feedback and I wanted to personally thank you! Customers like you help small businesses like ours succeed, and inform shoppers about trusted sellers.
If you could, please let other buyers know how you felt about [[product-name]]. Seller feedback reviews me as a merchant and a product review is your opinion of item purchased. Product reviews go a long way in helping shoppers determine which products they want to buy and your opinion really matters.
[[product-review-link]]
Please let us know if we can help in any way. Thanks again!
**Signature**
</pre>
<h3 id="We-Need-Your-Help"><a href="#We-Need-Your-Help" class="headerlink" title="We Need Your Help"></a>We Need Your Help</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your opinion matters to us.</div><div class="line">EVENT: 7 days after delivered</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your purchase!
We want to ensure that you feel satisfied with your purchase. And your review helps other buyers feel confident in their purchasing [[product-name]]; ultimately helping us grow our business.
So we really need your help!
Please take a moment and help us by giving our [[product-name]] a review. Your feedback makes a significant difference to us as a small business.
Please click on the link: [[product-review-link]] to leave your comments.
We look forward to hearing about your experience!
Sincerely,
**Signature**
P.S. Remember, by giving a review here: [[product-review-link]], it really helps our small business grow.
</pre>
<h3 id="Share-Your-Review-With-Others"><a href="#Share-Your-Review-With-Others" class="headerlink" title="Share Your Review With Others"></a>Share Your Review With Others</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Are you happy with [[product-name]] like our other buyers? </div><div class="line">EVENT: 9 days after delivered</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your purchase!
Many of our customers are so pleased with our [[product-name]] that they frequently place a second order for themselves or as a gift. Whether you make the decision to place another order or not, we want to ensure that you feel satisfied with your purchase.
Please take a moment and give our [[product-name]] a review. Your review makes a significant difference to help our small business.
Your comments on our [[product-name]] helps other buyers realize they can trust our product to give a promising experience. And it gives us insights on how to improve or expand our product line.
Please click on the link: [[product-review-link]] to leave your review.
We look forward to hearing about your experience!
Sincerely,
**Signature**
P.S. Remember, by giving a review here: [[product-review-link]], it really makes a significant difference to help us grow!
</pre>
<h3 id="Helpful-Review-Request"><a href="#Helpful-Review-Request" class="headerlink" title="Helpful Review Request"></a>Helpful Review Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Share with us how you liked [[product-name]]!</div><div class="line">EVENT: 7 days after delivered</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your purchase!
Many of our customers are pleased with our [[product-name]], and we like to ensure that you feel the same!
Please take a moment and give our [[product-name]] a review. Your feedback means everything to a small business like ours.
Your review of our [[product-name]] helps other buyers feel confident in their purchase. And it gives us insights on how to improve or expand our product.
Please click on the link: [[product-review-link]] to share your thoughts.
We look forward to hearing about your experience!
Sincerely,
**Signature**
</pre>
<h3 id="Valued-Customer-Review-Request"><a href="#Valued-Customer-Review-Request" class="headerlink" title="Valued Customer Review Request"></a>Valued Customer Review Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: How awesome is your new [[product-name]]??</div><div class="line">EVENT: 4 days after delivered</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]]!
Thank you so much for becoming a valued customer! We make customer satisfaction a top priority and would like to know how you are enjoying your new product. Help us to improve our products by leaving an honest review. Click on the link below to leave your review.
[[product-review-link:Click Here to Leave a Review]]
[[order-link:View Your Order on Amazon]]
Cheers,
**Signature**
</pre>
<h3 id="7-Days-After-Delivery-Review-Request"><a href="#7-Days-After-Delivery-Review-Request" class="headerlink" title="7 Days After Delivery Review Request"></a>7 Days After Delivery Review Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Tell us about how you liked [[product-name]]!</div><div class="line">EVENT: 7 days after delivered</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for purchasing [[product-name]]! Our customer support doesn't end with your purchase. If there are any issues with your order, please [[contact-link:contact us]] by responding to this email so we can address your concerns.
Your opinion matters and other shoppers would love to hear what you have to say. If you haven't already left a review, we would appreciate if you would share your thoughts on it.
[[product-review-link:Write your review here]]
Thanks again!
Sincerely,
**Signature**
</pre>
<h3 id="Review-Request"><a href="#Review-Request" class="headerlink" title="Review Request"></a>Review Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your [[product-name]] has been delivered! Tell us how you feel about it</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: Product Review</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
We just noticed your [[product-name]] has been delivered. Congrats!
Your complete satisfaction is my number one priority. If you have any issues with your purchase, please [[contact-link:contact us]] so we can do our best to resolve them. As a small business, your review goes a long way in helping others determine if they want to buy from us. Would you be able to take 1 minute of your time and share your opinion about [[product-name]]?
[[product-review-link:Write your review here]]
Again, if there are any issues, please reply to this email so we can help. Thanks again!
Sincerely,
**Signature**
</pre>
<h2 id="Seller-Feedback"><a href="#Seller-Feedback" class="headerlink" title="Seller Feedback"></a>Seller Feedback</h2><h3 id="All-In-One-Seller-Feedback-–-Attachment-Bonus-Content"><a href="#All-In-One-Seller-Feedback-–-Attachment-Bonus-Content" class="headerlink" title="[All-In-One] Seller Feedback – Attachment/Bonus Content"></a>[All-In-One] Seller Feedback – Attachment/Bonus Content</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your **Ebook/Instruction Guide/Recipe Book/Etc.** is Attached</div><div class="line">EVENT: Immediately after out for delivery</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
It is our pleasure to have you as a customer! We’re excited that you chose **Brand Name** to
provide the **product type such as “mixing bowl set”** you need.
As mentioned on our Amazon sales page, your **Brand Name** purchase includes a **type of
attachment such as ebook, instruction guide/etc.**. We have that for you here. Simply click to
download and save it to your computer or other device.
Inside, you’ll find:
**List 2 or 3 things that are included in the attachment such as “3 important steps to take
before you use your new {product}.”**
Once you read through the attachment, please feel free reply to this email is you have
questions or need assistance with your product.
**Signature**
<b>P.S.</b> Did you check our seller feedback before you bought? Most customers do! Amazon
shoppers appreciate hearing other customers’ opinions about the sellers on Amazon. It is a big
help when trying to make a decision. Will you take a minute or two to [[feedback-link: leave
your thoughts about **Brand Name**?]] Thanks!
</pre>
<h3 id="All-In-One-Seller-Feedback-–-Reinforce-Your-Brand"><a href="#All-In-One-Seller-Feedback-–-Reinforce-Your-Brand" class="headerlink" title="[All-In-One] Seller Feedback – Reinforce Your Brand"></a>[All-In-One] Seller Feedback – Reinforce Your Brand</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Congratulations on Your **Brand Name** Purchase</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
We’re excited to welcome you to the **Brand Name** community! If this is your first purchase
of a **Brand Name** product, you are in for a unique experience as you get to know and
appreciate the **fill in what your brand stands for, perhaps “quality and luxury” or “sturdiness
and long-lasting workmanship, etc.** behind every product we make.
[[product-name]] is well known for **enter what you’re known for, perhaps “delightfully
distinctive baked treats and confections”.** We’re sure you will agree!
<b>Would you be willing to [[feedback-link: leave feedback about **Brand Name** as an
Amazon seller?]]</b> We’d love for you to share your thoughts about **Brand Name** and how
we performed as a seller. Your opinion will help other Amazon shoppers make a confident
buying decision.
Have questions about your product or **Brand Name**? Simply reply to this email and
someone from our team will make it a priority to take care of you.
**Signature**
</pre>
<h3 id="All-In-One-Seller-Feedback-–-Follow-Up"><a href="#All-In-One-Seller-Feedback-–-Follow-Up" class="headerlink" title="[All-In-One] Seller Feedback – Follow-Up"></a>[All-In-One] Seller Feedback – Follow-Up</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Did Your [[product-name]] Arrive?</div><div class="line">EVENT: 2 days after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
We see that your new order was shipped. This is a courtesy follow-up to ensure your [[product-name]] is everything you hoped it would be!
We appreciate your business and want to make certain you are 100% satisfied. <b>Please reply to this email if you:</b>
- Have general questions about your product.
- Need help with **using/operating** your product.
- Have concerns or issues with your product.
Please contact Amazon via the Amazon website if:
- Your order has not arrived (Amazon handles shipping for us).
- Your package arrived damaged.
As our valued customers, we are always available to you to provide exceptional customer service.
As our valued customers, we are always available to you to provide exceptional customer
service. In fact, you can rate **Company Name** as an Amazon seller. <b>Take a few minutes
today to [[feedback-link: tell other Amazon shoppers what you think of us as a company.]]</b>
Thanks!
Enjoy!
**Signature**
</pre>
<h3 id="All-In-One-Seller-Feedback–-Helpful-Tips"><a href="#All-In-One-Seller-Feedback–-Helpful-Tips" class="headerlink" title="[All-In-One] Seller Feedback– Helpful Tips"></a>[All-In-One] Seller Feedback– Helpful Tips</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Helpful **Tips/Hacks** for Using Your New [[product-name]]</div><div class="line">EVENT: Immediately after shipped</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Your [[product-name]] is on its way and we’re excited for you to **use/eat/etc.** it!
While you probably know it **insert one use/feature/benefit such as “is a sinfully delicious
treat”**, you may not be aware that it:
<b>**INSERT 3-4 HELPFUL TIPS/HACKS/USES THAT CUSTOMERS MAY NOT KNOW ABOUT. Perhaps
your gourmet chocolate squares are excellent when melted into a cup of coffee, or your small
paint brushes can also be used when decorating cookies, etc.)**</b>
<b>Have questions?</b> Just reply to this email and we’ll be happy to provide additional information.
Thanks for your order!
**Signature**
P.S. Did you know you can rate our performance as an Amazon seller? It’s simple and easy to
[[feedback-link: let others know what you think of us as a company]]. If you have a couple of
minutes today, <b>please leave seller feedback. Thanks!</b>
</pre>
<h3 id="All-In-One-Seller-Feedback-–-Generic-Thanks"><a href="#All-In-One-Seller-Feedback-–-Generic-Thanks" class="headerlink" title="[All-In-One] Seller Feedback – Generic Thanks"></a>[All-In-One] Seller Feedback – Generic Thanks</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your [[product-name]] Order Made Our Day</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
For small businesses, it’s always exciting to see new orders come through. We celebrate each
one and want to express our deep appreciation for trusting **Company Name** with your
recent [[product-name]] order.
Once your shipment arrives, don’t hesitate to reach out to us if you have questions about
**use, care instructions, maintenance, replacement parts, etc.** We’re always here to ensure
your complete satisfaction!
If you would, please [[feedback-link: leave feedback with your opinion of us as a seller]]. Your
comments <b>about us as a company</b> will help other Amazon shoppers make confident decisions.
Enjoy your day and your new [[product-name]]!
With sincere thanks,
**Signature**
</pre>
<h3 id="All-In-One-Seller-Feedback-–-Product-Information"><a href="#All-In-One-Seller-Feedback-–-Product-Information" class="headerlink" title="[All-In-One] Seller Feedback – Product Information"></a>[All-In-One] Seller Feedback – Product Information</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Important information about your new [[product-name]]</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: All-In-One</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thanks for your recent order. You’ve made a great choice!
Before you use your new [[product-name]] for the first time, take just a moment to read these
**instructions/safety guidelines/usage tips/helpful hints/etc.** They will help ensure you have the
best experience possible.
**INSERT INFORMATION YOUR CUSTOMERS NEED TO KNOW RIGHT AWAY BEFORE
USING THE PRODUCT.**
**This might be clarification on issues many customers get confused about, feature use tips, etc.
Examples include:
Be sure to wash your new water bottle in hot water and rinse it thoroughly before
drinking from it to eliminate the plastic taste.
The brackets on your car storage bag may not line up with your headrest posts. This is
not a defect. Simply turn the brackets until they align with your headrest.**
Once you follow these simple steps, you’ll be able to use your [[product-name]] and all its
features to the fullest.
——————————
Have 3 minutes? Just like you, other shoppers want help deciding which Amazon sellers to
trust. [[feedback-link:Share your opinion of us as a seller]] (whether we answered your questions, responded
quickly, etc.) so that other shoppers can learn from your experience.
——————————
Have questions? Simply reply to this email and we’ll respond quickly with the answers you need.
Enjoy!
**Signature**
</pre>
<h3 id="Small-Business-Feedback-Request"><a href="#Small-Business-Feedback-Request" class="headerlink" title="Small Business Feedback Request"></a>Small Business Feedback Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT:[[product-name]] was delivered and...</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: Seller Feedback</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your order of [[product-link]].
[[order-link:View Order on Amazon.com]]
Our carrier shows that your item has been delivered.
We want to make sure that you were satisfied with the delivery of your order. Naturally, as a small business your experience and your feedback are important to our success.
Please take a moment and share your experience on how well we handled your order. If there are any issues with the order, please [[contact-link:let us know]] right away and we'll immediately ameliorate any issues. As an option, you can report any issues by simply replying to this email.
Thanks again for your purchase!
Please take 2 seconds to click the link below and rate your experience.
[[feedback-link:Leave Us Feedback]]
Thank You,
**Signature**
</pre>
<h3 id="Quality-Service-Feedback-Request"><a href="#Quality-Service-Feedback-Request" class="headerlink" title="Quality Service Feedback Request"></a>Quality Service Feedback Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: [[product-name]] was delivered and...</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: Seller Feedback</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your order of [[product-link]].
[[order-link:View Order on Amazon.com]]
Our carrier notified us that your item has been delivered.
We want to make sure that you were satisfied with the delivery of your order. And as a small business, your satisfaction and your feedback are important to our success.
Please inspect your order. If there are any issues with the order, please [[contact-link:let us know]] right away and we'll immediately work to make it right. You can also simply reply to this email.
To ensure quality service, Amazon requests feedback on how well we handled your order. Can you please take a moment and share your experience on how well we processed and shipped your order?
Thanks again for your purchase!
Please take just 10 seconds to click the link below and rate our transaction.
[[feedback-link:Leave Us Feedback]]
Thank You,
**Signature**
</pre>
<h3 id="“Tell-Us-How-We-Did-”-Feedback-Request"><a href="#“Tell-Us-How-We-Did-”-Feedback-Request" class="headerlink" title="“Tell Us How We Did!” Feedback Request"></a>“Tell Us How We Did!” Feedback Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Tell us about how we did [[first-name]]!</div><div class="line">EVENT: 7 days after delivered</div><div class="line">GOAL: Seller Feedback</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for purchasing [[product-name]]! Our customer support doesn't end with your purchase. If there are any issues with your order, please [[contact-link:contact us]] by responding to this email so we can address your concerns.
Your opinion matters and other shoppers would love to hear what you have to say. If you haven't already left a review, we would appreciate if you would share your thoughts on it.
[[feedback-link:Leave your feedback here]]
Thanks again!
Sincerely,
**Signature**
</pre>
<h3 id="“Congrats-”-Feedback-Request"><a href="#“Congrats-”-Feedback-Request" class="headerlink" title="“Congrats!” Feedback Request"></a>“Congrats!” Feedback Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Your order has been delivered! Tell us how you feel about it</div><div class="line">EVENT: mmediately after delivered</div><div class="line">GOAL: Seller Feedback</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
We just noticed your [[product-name]] has been delivered. Congrats!
Your complete satisfaction is my number one priority. If you have any issues with your purchase, please [[contact-link:contact us]] so we can do our best to resolve them. As a small business, your feedback goes a long way in helping others determine if they want to buy from us. Would you be able to take 1 minute of your time and share about your recent experience?
[[feedback-link:Write your review here]]
Again, if there are any issues, please reply to this email so we can help. Thanks again!
Sincerely,
**Signature**
</pre>
<h3 id="“Mind-Sharing-Your-Experience-”-Feedback-Request"><a href="#“Mind-Sharing-Your-Experience-”-Feedback-Request" class="headerlink" title="“Mind Sharing Your Experience?” Feedback Request"></a>“Mind Sharing Your Experience?” Feedback Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: Mind Sharing Your Experience?</div><div class="line">EVENT: 2 days after delivered</div><div class="line">GOAL: Seller Feedback</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your order of [[product-link]].
I hope that you've had a chance to open up the package and make sure that everything is in order. Please [[contact-link:let us know]] right away if there is anything wrong so that we have an opportunity to correct it. You can also simply reply to this email.
Thanks again for shopping with us. [[feedback-link:I'd really appreciate it if you could take just a few seconds to leave feedback]] for us. It really affects our ability to sell and be successful. One of the things that makes Amazon such a great place to shop is the feedback system and active participation by buyers like you.
[[feedback-link:Leave feedback for **Signature**]].
[[order-link:View your order on Amazon]]
**Signature**
</pre>
<h3 id="10-Second-Feedback-Request"><a href="#10-Second-Feedback-Request" class="headerlink" title="10 Second Feedback Request"></a>10 Second Feedback Request</h3><figure class="highlight plain"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">SUBJECT: [[product-name]] has been delivered</div><div class="line">EVENT: Immediately after delivered</div><div class="line">GOAL: Seller Feedback</div></pre></td></tr></table></figure>
<pre>
Hello [[first-name]],
Thank you again for your order of [[product-link]].
[[order-link:View Order on Amazon.com]]
The available tracking information from [[carrier]] shows that your item has been delivered. Amazon asks that you rate my service based on how I handled your order and processed it for delivery. As a small company, your feedback is critical to our success. Please take a moment to verify that your item was not damaged in transit. If there is any problem with the order, please [[contact-link:let us know]] right away and we'll do what we can to make it right. You can also simply reply to this email.
Thanks again for your purchase, we'd appreciate it if you could take less than 10 seconds to click the link below and rate this transaction.
[[feedback-link:Leave Us Feedback]]
Thank You,
**Signature**
</pre>
</div>
<blockquote class="post-copyright">
<div class="content">
<span class="post-time">
Last updated: <time datetime="2018-08-31T16:34:25.268Z" itemprop="dateUpdated">2018-09-01 00:34:25</time>
</span><br>
Comments here,such as:<a href="/amazon-message-templates.html" target="_blank" rel="external">http://blog.inesoi.com/amazon-message-templates.html</a>
</div>
<footer>
<a href="http://blog.inesoi.com">
<img src="/img/avatar.png" alt="Inesoi Bag Factory">
Inesoi Bag Factory
</a>
</footer>
</blockquote>
<div class="post-footer">
<ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/amazon/">amazon</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/message/">message</a></li></ul>
<div class="page-share-wrap">
<div class="page-share" id="pageShare">
<ul class="reset share-icons">
<li>
<a class="weibo share-sns" target="_blank" href="http://service.weibo.com/share/share.php?url=http://blog.inesoi.com/amazon-message-templates.html&title=《Amazon Message Templates》 — Inesoi Bag Factory&pic=http://blog.inesoi.com/img/avatar.png" data-title="微博">
<i class="icon icon-weibo"></i>
</a>
</li>
<li>
<a class="weixin share-sns wxFab" href="javascript:;" data-title="微信">
<i class="icon icon-weixin"></i>
</a>
</li>
<li>
<a class="qq share-sns" target="_blank" href="http://connect.qq.com/widget/shareqq/index.html?url=http://blog.inesoi.com/amazon-message-templates.html&title=《Amazon Message Templates》 — Inesoi Bag Factory&source=" data-title=" QQ">
<i class="icon icon-qq"></i>
</a>
</li>
<li>
<a class="facebook share-sns" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http://blog.inesoi.com/amazon-message-templates.html" data-title=" Facebook">
<i class="icon icon-facebook"></i>
</a>
</li>
<li>
<a class="twitter share-sns" target="_blank" href="https://twitter.com/intent/tweet?text=《Amazon Message Templates》 — Inesoi Bag Factory&url=http://blog.inesoi.com/amazon-message-templates.html&via=http://blog.inesoi.com" data-title=" Twitter">
<i class="icon icon-twitter"></i>
</a>
</li>
<li>
<a class="google share-sns" target="_blank" href="https://plus.google.com/share?url=http://blog.inesoi.com/amazon-message-templates.html" data-title=" Google+">
<i class="icon icon-google-plus"></i>
</a>
</li>
</ul>
</div>
<a href="javascript:;" id="shareFab" class="page-share-fab waves-effect waves-circle">
<i class="icon icon-share-alt icon-lg"></i>
</a>
</div>
</div>
</div>
<nav class="post-nav flex-row flex-justify-between">
<div class="waves-block waves-effect prev">
<a href="/how-to-source-good-suppliers-on-alibaba-completely-guide.html" id="post-prev" class="post-nav-link">
<div class="tips"><i class="icon icon-angle-left icon-lg icon-pr"></i> Prev</div>
<h4 class="title">Tips for Sourcing Good Suppliers on Alibaba</h4>
</a>
</div>
<div class="waves-block waves-effect next">
<a href="/yiwu-wholesale-market-complete-guide.html" id="post-next" class="post-nav-link">
<div class="tips">Next <i class="icon icon-angle-right icon-lg icon-pl"></i></div>
<h4 class="title">Source Product in Yiwu Wholesale Market - Complete Guide</h4>
</a>
</div>
</nav>
</article>
</div>
<footer class="footer">
<div class="top" style="display:none">
<p>
<span><a href="/atom.xml" target="_blank" class="rss" title="rss"><i class="icon icon-lg icon-rss"></i></a></span>
<span>footer.license</span>
</p>
</div>
<div class="bottom">
<p><span>Inesoi Bag Factory © 2012 - 2018</span>
<span style="display:none">
Power by <a href="http://hexo.io/" target="_blank">Hexo</a> Theme <a href="https://github.com/yscoder/hexo-theme-indigo" target="_blank">indigo</a>
</span>
</p>
</div>
</footer>
</main>
<div class="mask" id="mask"></div>
<a href="javascript:;" id="gotop" class="waves-effect waves-circle waves-light"><span class="icon icon-lg icon-chevron-up"></span></a>
<div class="global-share" id="globalShare">
<ul class="reset share-icons">
<li>
<a class="weibo share-sns" target="_blank" href="http://service.weibo.com/share/share.php?url=http://blog.inesoi.com/amazon-message-templates.html&title=《Amazon Message Templates》 — Inesoi Bag Factory&pic=http://blog.inesoi.com/img/avatar.png" data-title="微博">
<i class="icon icon-weibo"></i>
</a>
</li>
<li>
<a class="weixin share-sns wxFab" href="javascript:;" data-title="微信">
<i class="icon icon-weixin"></i>
</a>
</li>
<li>
<a class="qq share-sns" target="_blank" href="http://connect.qq.com/widget/shareqq/index.html?url=http://blog.inesoi.com/amazon-message-templates.html&title=《Amazon Message Templates》 — Inesoi Bag Factory&source=" data-title=" QQ">
<i class="icon icon-qq"></i>
</a>
</li>
<li>
<a class="facebook share-sns" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http://blog.inesoi.com/amazon-message-templates.html" data-title=" Facebook">
<i class="icon icon-facebook"></i>
</a>
</li>
<li>
<a class="twitter share-sns" target="_blank" href="https://twitter.com/intent/tweet?text=《Amazon Message Templates》 — Inesoi Bag Factory&url=http://blog.inesoi.com/amazon-message-templates.html&via=http://blog.inesoi.com" data-title=" Twitter">
<i class="icon icon-twitter"></i>
</a>
</li>
<li>
<a class="google share-sns" target="_blank" href="https://plus.google.com/share?url=http://blog.inesoi.com/amazon-message-templates.html" data-title=" Google+">
<i class="icon icon-google-plus"></i>
</a>
</li>
</ul>
</div>
<div class="page-modal wx-share" id="wxShare">
<a class="close" href="javascript:;"><i class="icon icon-close"></i></a>
<p>扫一扫,分享到微信</p>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMYAAADGCAAAAACs8KCBAAACLUlEQVR42u3aS27DMAxF0ex/0y7QUSaR7yNVNKauRkFS2zouQPCj1wuv63etP79/877SO5OrikuGDBmPZVzLtX4YYfBrybM+XitDhowDGGko5N+kv64D+sfvZciQIWOZrtUA62AtQ4YMGZ2Am26Ip5L89cmQIeNMBi8+15vghW4tZdxQi8uQIeOBjF2Dgb/4/A/zDRkyZHwZ4woXKUr3jg3QrmTIkDGasT4wQUrH/iGM2it7pZuTIUPGYxm1W/MMjQ8V0hGCDBkyZPD2fe0OpA1H2DJkyDiBQRLBdFTQwfOkM57EypAhYzSDH79IW3XpK7i5gwwZMkYzeEmZTg/TRDM9KCZDhoxzGGkxyVO62hmJ4h5kyJAxlEEu29vu3/UUGTJknMOoBdxOu61WssqQIeNkRnrYgoTRtDQl5S76P8iQIWMog7fAeDLXHyR0kDJkyJjHqB3/4iOEzhaDRFOGDBnHMMiBrU6QTcF8JzJkyJjN6Awad7XbUmQ6KJUhQ8bTGbUtdgrOdT1NUs+b+luGDBlDGfwzL4BrxzjS596cGZEhQ8YIRgogaVyaYnbabTJkyDiBcYWrNsjcFbg//ipDhozRjLTp1m/ScUZtOilDhoypDH5Iq5ZKpklh+pcyZMg4h9EZLqabiOO9DBkyZIQt+PUIk5Sg/cbczSBThgwZMhrpIG+lkdC/IeDKkCHjUQwe5moDyM7rQCMBGTJkjGZ0CsiURIrb9LXKkCFjNOMHnZ9W5OsJeOkAAAAASUVORK5CYII=" alt="微信分享二维码">
</div>
<script src="//cdn.bootcss.com/node-waves/0.7.4/waves.min.js"></script>
<script>
var BLOG = { ROOT: '/', SHARE: true, REWARD: false };
</script>
<script src="/js/main.min.js?v=1.6.17"></script>
<div class="search-panel" id="search-panel">
<ul class="search-result" id="search-result"></ul>
</div>
<template id="search-tpl">
<li class="item">
<a href="{path}" class="waves-block waves-effect">
<div class="title ellipsis" title="{title}">{title}</div>
<div class="flex-row flex-middle">
<div class="tags ellipsis">
{tags}
</div>
<time class="flex-col time">{date}</time>
</div>
</a>
</li>
</template>
<script src="/js/search.min.js?v=1.6.17" async></script>
</body>
</html>