The Most Active and Friendliest
Affiliate Marketing Community Online!

“Propeller”/  Direct Affiliate

Long-Term E-Mail Sequence?

DK-OMS

Member
Hey Folks,

I´m about to start my list-building.
My lead-magnet is already set up.
After requesting the lead-magnet, people will get 5 automated emails (with a delay of 2 days), which is fine for me.

But what should come next? Would it make sense of creating another automated email-sequence in terms of long-term conversation which starts right after the first one ends? Or would you rather send individual emails to your list from time to time? I´m struggling with the idea of creating over 30 emails for an automated tong-term sequence :)

This is something which prevents me from driving traffic to my lead-magnet. I´m afraid people could get cold after the first 5 emails.

Thanks for your inspirations.
Daniel
 
I would
  1. loop my email test-list
  2. then
    Code:
    #! /bin/bash
    
    ##mail.sh
    cat file.csv  | while read line
    do
    days=$(( ( RANDOM % 7 )  + 1 ))
    addtime=$(( ( RANDOM % 59 )  + 1 ))
    echo '$days + $addtime /minutes added time'
    
    seq=$(bc <<<"(($days*24)*60)+($addtime)")
    echo $seq sequence send time /min
    mail=$(date -d   "$seq min" +'%Y:%m:%d %T')
    
    echo $line,$mail
    
    #do mail routine storage here MySQL  
    #Or, use epoch time in the real world<<<<
    done
    add the date to mail.
    now it is random like a human
  3. Code:
    :~$ ./mail.sh
    2 + 36 /minutes added time
    2916 sequence send time /min
    wPsK3WNV0@domain.com,2019-03-19 14:30:40
    2 + 17 /minutes added time
    2897 sequence send time /min
    V0JOYY8wk@domain.com,2019-03-19 14:11:40
    5 + 9 /minutes added time
    7209 sequence send time /min
    xjMmabCjk@domain.com,2019-03-22 14:03:41
    5 + 16 /minutes added time
    7216 sequence send time /min
    IwTzuxja5@domain.com,2019-03-22 14:10:41
    3 + 39 /minutes added time
    4359 sequence send time /min
    wm632elBD@domain.com,2019-03-20 14:33:41
    3 + 16 /minutes added time
    4336 sequence send time /min
    npH7toxg8@domain.com,2019-03-20 14:10:41
    7 + 15 /minutes added time
    10095 sequence send time /min
    Kt2Lc4WBv@domain.com,2019-03-24 14:09:41
    1 + 4 /minutes added time
    1444 sequence send time /min
    YhnD04s1l@domain.com,2019-03-18 13:58:41
    3 + 15 /minutes added time
    4335 sequence send time /min
    t0mZwj3Bn@domain.com,2019-03-20 14:09:41
    4 + 2 /minutes added time
    5762 sequence send time /min
    Wmx8Wbqcm@domain.com,2019-03-21 13:56:41
    1 + 54 /minutes added time
    1494 sequence send time /min
    ZoRsNvOje@domain.com,2019-03-18 14:48:41
    6 + 51 /minutes added time
    8691 sequence send time /min
    hxkbTI0Vt@domain.com,2019-03-23 14:45:41
    1 + 13 /minutes added time
    1453 sequence send time /min
    rSVMualhA@domain.com,2019-03-18 14:07:41
    4 + 25 /minutes added time
    5785 sequence send time /min
    fyDf57Kza@domain.com,2019-03-21 14:19:41
    6 + 11 /minutes added time
    8651 sequence send time /min
    JfSpo63S1@domain.com,2019-03-23 14:05:41

Of course you could look for a tool to pay for every month :p
*the secondswill always equal the start time of the script loop ;) (Milliseconds might change inside the loop.)
epoch time:
:~$ date +%s
1552846376
:~$ date --date='@1552846376'
Sun Mar 17 14:12:56 EDT 2019
 
Last edited:
An email sequence is a series of emails automatically sent to specific segments of people on your email list. An email sequence can be trigger-based or time-based. When an email sequence is trigger-based, emails are sent based on actions such as: Browsing behavior.
When an email sequence is trigger-based, emails are sent based on actions such as:
  • Browsing behavior
  • Subscribing to your list
  • Shopping cart abandonment
  • Reading or downloading content
  • Buying a product
A time-based email sequence (sometimes called an email autoresponder) sends emails at predetermined time intervals, like…
  • Right after opt-in
  • 30 days after purchase
  • On the anniversary of subscribing
The 5 most important types of email sequences are…
  1. Welcome email sequence
  2. On-boarding email sequence
  3. Abandon cart email sequence
  4. Repeat customer email sequence
  5. Re-engagement email sequence
 
banners
Back