Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save crova/323fdff8f0253abf5a5269c8593f641e to your computer and use it in GitHub Desktop.
Save crova/323fdff8f0253abf5a5269c8593f641e to your computer and use it in GitHub Desktop.
Trying to create (if nothing matchs 'campaign_id') or update (if 'campaign_id' is found on database)
PG::UniqueViolation: ERROR: duplicate key value violates unique constraint "shoots_pkey" DETAIL: Key (id)=(137) already exists. : INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"
Extracted source (around line #53):
51
52
53
54
55
56
# update/create
campaign_records.each do |record|
shoot = Shoot.find_or_create_by(:campaign_id => record['id'])
unless shoot.update(record.symbolize_keys.except(:campaign_id))
Shoot.create(record)
# the data was invalid, so the shoot wasn't saved, do something about that here
# This creates but with 'campaign_id' = 'nil'
# fetchs SIB Campaigns
def fetch
# update/create
campaign_records.each do |record|
shoot = Shoot.find_or_create_by(:id => record['campaign_id'])
unless shoot.update(record.symbolize_keys.except(:id))
Shoot.create(record)
# the data was invalid, so the shoot wasn't saved, do something about that here
end
end
redirect_to(:action => 'index')
end
# This creates 135 records (matching 'id' with 'campaign_id') but return error of duplicated key value on 'id' = 137
# fetchs SIB Campaigns
def fetch
# update/create
campaign_records.each do |record|
shoot = Shoot.find_or_create_by(:campaign_id => record['id'])
unless shoot.update(record.symbolize_keys.except(:campaign_id))
Shoot.create(record)
# the data was invalid, so the shoot wasn't saved, do something about that here
end
end
redirect_to(:action => 'index')
end
#<Shoot id: 270, campaign_id: "270", campaign_name: "English Town PDF - DGMax - Inativos Both", subject: "{PRENOM} Pegue seu PRESENTE !", bat_sent: "no", type: "classic", html_content: "<body style=\"margin:0; padding:0;\"><!DOCTYPE html ...", entered: "2016-06-08", modified: "2016-06-08", status: "Sent", sent: 146, remaining: 0, listid: "[12]", exclude_list: "[5, 14, 37]", stats_by_domain: {"gmail.com"=>{"sent"=>65, "delivered"=>61, "viewed"=>1, "clicked"=>1, "hard_bounce"=>4, "unsub"=>0, "complaints"=>0, "unique_views"=>1, "unique_clicks"=>1, "soft_bounces"=>0}, "hotmail.com"=>{"sent"=>36, "delivered"=>35, "viewed"=>3, "clicked"=>0, "hard_bounce"=>1, "unsub"=>0, "complaints"=>0, "unique_views"=>3, "unique_clicks"=>0, "soft_bounces"=>1}, "yahoo.com.br"=>{"sent"=>33, "delivered"=>31, "viewed"=>19, "clicked"=>2, "hard_bounce"=>2, "unsub"=>0, "complaints"=>0, "unique_views"=>6, "unique_clicks"=>2, "soft_bounces"=>0}, "bol.com.br"=>{"sent"=>4, "delivered"=>4, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "hotmail.com.br"=>{"sent"=>1, "delivered"=>1, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "yahoo.com"=>{"sent"=>1, "delivered"=>1, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "gmail.com.br"=>{"sent"=>1, "delivered"=>nil, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>1}, "outlook.com.br"=>{"sent"=>1, "delivered"=>1, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "ymail.com"=>{"sent"=>1, "delivered"=>1, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}}, scheduled_date: "2016-06-08", filter: "[{\"search\"=>{\"$or\"=>[{\"$and\"=>[{\"entered\"=>{\"$gte\"...", tags: "english", header: "EXISTS", footer: "EXISTS", to_field: "", from_name: "Ebook GRATUITO - A Boa do Dia !", from_email: "", form_name: "", reply_to: "contato@qualaboa.net", delivered: 135, unique_views: 10, viewed: 23, clicked: 3, clicker: 3, hard_bounce: 7, soft_bounce: 5, unsub: 0, mirror_click: 0, complaints: 0, links_message: nil, share_link: 0, payout: nil, ecpm: nil, turnover: nil, cost: nil, margin: nil, result: nil, roi: nil, name: nil, segment: nil, deal: nil, partner: nil, created_at: "2016-06-12 11:18:56", updated_at: "2016-06-12 11:19:08">, #<Shoot id: 269, campaign_id: "269", campaign_name: "English Town PDF - DGMax - Inativos Both", subject: "{PRENOM} Pegue seu PRESENTE !", bat_sent: "no", type: "classic", html_content: "<body style=\"margin:0; padding:0;\"><!DOCTYPE html ...", entered: "2016-06-08", modified: "2016-06-08", status: "Sent", sent: 13316, remaining: 0, listid: "[133]", exclude_list: "[5, 14, 37, 131, 132, 123]", stats_by_domain: {"hotmail.com"=>{"sent"=>1165, "delivered"=>1165, "viewed"=>19, "clicked"=>8, "hard_bounce"=>0, "unsub"=>1, "complaints"=>0, "unique_views"=>18, "unique_clicks"=>8, "soft_bounces"=>1}, "terra.com.br"=>{"sent"=>32, "delivered"=>32, "viewed"=>1, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>1, "unique_clicks"=>0, "soft_bounces"=>0}, "gmail.com"=>{"sent"=>9614, "delivered"=>9613, "viewed"=>389, "clicked"=>53, "hard_bounce"=>1, "unsub"=>12, "complaints"=>0, "unique_views"=>293, "unique_clicks"=>47, "soft_bounces"=>0}, "yahoo.com.br"=>{"sent"=>1137, "delivered"=>1137, "viewed"=>22, "clicked"=>2, "hard_bounce"=>0, "unsub"=>2, "complaints"=>0, "unique_views"=>20, "unique_clicks"=>2, "soft_bounces"=>0}, "uol.com.br"=>{"sent"=>146, "delivered"=>146, "viewed"=>7, "clicked"=>2, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>7, "unique_clicks"=>2, "soft_bounces"=>0}, "live.com"=>{"sent"=>11, "delivered"=>11, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "hotmail.com.br"=>{"sent"=>11, "delivered"=>11, "viewed"=>1, "clicked"=>1, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>1, "unique_clicks"=>1, "soft_bounces"=>0}, "bol.com.br"=>{"sent"=>394, "delivered"=>394, "viewed"=>9, "clicked"=>4, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>7, "unique_clicks"=>4, "soft_bounces"=>0}, "yahoo.com"=>{"sent"=>52, "delivered"=>52, "viewed"=>2, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>1, "unique_clicks"=>0, "soft_bounces"=>0}, "oi.com.br"=>{"sent"=>103, "delivered"=>102, "viewed"=>0, "clicked"=>2, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>2, "soft_bounces"=>1}, "sulamerica.com.br"=>{"sent"=>1, "delivered"=>1, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "outlook.com.br"=>{"sent"=>3, "delivered"=>3, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "itelefonica.com.br"=>{"sent"=>4, "delivered"=>nil, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>4}, "superig.com.br"=>{"sent"=>13, "delivered"=>13, "viewed"=>1, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>1, "unique_clicks"=>0, "soft_bounces"=>0}, "brturbo.com.br"=>{"sent"=>11, "delivered"=>11, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "gmail.com.br"=>{"sent"=>2, "delivered"=>nil, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>2}, "msn.com"=>{"sent"=>3, "delivered"=>3, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "ig.com.br"=>{"sent"=>62, "delivered"=>62, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "ymail.com"=>{"sent"=>17, "delivered"=>17, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "outlook.com"=>{"sent"=>27, "delivered"=>26, "viewed"=>0, "clicked"=>0, "hard_bounce"=>1, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "globomail.com"=>{"sent"=>17, "delivered"=>17, "viewed"=>0, "clicked"=>1, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>1, "soft_bounces"=>0}, "gmai.com"=>{"sent"=>6, "delivered"=>6, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "icloud.com"=>{"sent"=>5, "delivered"=>4, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>1}, "globo.com"=>{"sent"=>27, "delivered"=>27, "viewed"=>1, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>1, "unique_clicks"=>0, "soft_bounces"=>0}, "gmal.com"=>{"sent"=>1, "delivered"=>nil, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>1}, "sercomtel.com.br"=>{"sent"=>3, "delivered"=>3, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "sanepar.com.br"=>{"sent"=>5, "delivered"=>5, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "uel.br"=>{"sent"=>2, "delivered"=>2, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "r7.com"=>{"sent"=>18, "delivered"=>18, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "zipmail.com.br"=>{"sent"=>10, "delivered"=>10, "viewed"=>2, "clicked"=>1, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>2, "unique_clicks"=>1, "soft_bounces"=>0}, "rocketmail.com"=>{"sent"=>4, "delivered"=>4, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "ibest.com.br"=>{"sent"=>5, "delivered"=>5, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "unochapeco.edu.br"=>{"sent"=>2, "delivered"=>2, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "magazineluiza.com.br"=>{"sent"=>3, "delivered"=>3, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "usp.br"=>{"sent"=>2, "delivered"=>2, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "aol.com"=>{"sent"=>1, "delivered"=>1, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}}, scheduled_date: "2016-06-08", filter: "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37, 131...", tags: "english", header: "EXISTS", footer: "EXISTS", to_field: "", from_name: "Ebook GRATUITO - A Boa do Dia !", from_email: "", form_name: "", reply_to: "xxx", delivered: 13291, unique_views: 357, viewed: 461, clicked: 78, clicker: 72, hard_bounce: 2, soft_bounce: 25, unsub: 16, mirror_click: 17, complaints: 0, links_message: nil, share_link: 0, payout: nil, ecpm: nil, turnover: nil, cost: nil, margin: nil, result: nil, roi: nil, name: nil, segment: nil, deal: nil, partner: nil, created_at: "2016-06-12 11:18:56", updated_at: "2016-06-12 11:19:08">,
# I'm trying to record 'id' on this data set as 'campaign_id' on the database so I can use 'campaign_id' as unique key for updating/creating new records on each call I make to the API (because 'id' on the data set will the be unique key)
# {"id"=>42, "campaign_name"=>"Assuropoil- Natexo - Ativos", "subject"=>"Vite ! 2 mois offerts, profitez-en !", "bat_sent"=>"yes", "type"=>"classic", "html_content"=>"<html><head><title>J'assure mon animal</title><base target=\"_blank\"></head> <head>\n <title></title>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n\t xxxx</html>", "entered"=>"2016-04-06 20:37:10", "modified"=>"2016-04-09 01:10:05", "status"=>"Sent", "sent"=>1597, "remaining"=>0, "listid"=>[51], "exclude_list"=>[50], "stats_by_domain"=>{"free.fr"=>{"sent"=>48, "delivered"=>48, "viewed"=>19, "clicked"=>0, "hard_bounce"=>0, "unsub"=>3, "complaints"=>0, "unique_views"=>13, "unique_clicks"=>0, "soft_bounces"=>0}, "orange.fr"=>{"sent"=>568, "delivered"=>568, "viewed"=>278, "clicked"=>1, "hard_bounce"=>0, "unsub"=>11, "complaints"=>0, "unique_views"=>230, "unique_clicks"=>1, "soft_bounces"=>0}, "yahoo.fr"=>{"sent"=>774, "delivered"=>774, "viewed"=>404, "clicked"=>8, "hard_bounce"=>0, "unsub"=>11, "complaints"=>3, "unique_views"=>295, "unique_clicks"=>7, "soft_bounces"=>0}, "wanadoo.fr"=>{"sent"=>116, "delivered"=>116, "viewed"=>55, "clicked"=>1, "hard_bounce"=>0, "unsub"=>6, "complaints"=>0, "unique_views"=>44, "unique_clicks"=>1, "soft_bounces"=>0}, "aliceadsl.fr"=>{"sent"=>9, "delivered"=>9, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "sfr.fr"=>{"sent"=>32, "delivered"=>32, "viewed"=>16, "clicked"=>0, "hard_bounce"=>0, "unsub"=>3, "complaints"=>0, "unique_views"=>13, "unique_clicks"=>0, "soft_bounces"=>0}, "bbox.fr"=>{"sent"=>2, "delivered"=>2, "viewed"=>0, "clicked"=>0, "hard_bounce"=>0, "unsub"=>0, "complaints"=>0, "unique_views"=>0, "unique_clicks"=>0, "soft_bounces"=>0}, "gmail.com"=>{"sent"=>30, "delivered"=>30, "viewed"=>16, "clicked"=>0, "hard_bounce"=>0, "unsub"=>2, "complaints"=>0, "unique_views"=>15, "unique_clicks"=>0, "soft_bounces"=>0}, "yahoo.com"=>{"sent"=>12, "delivered"=>12, "viewed"=>6, "clicked"=>0, "hard_bounce"=>0, "unsub"=>1, "complaints"=>0, "unique_views"=>4, "unique_clicks"=>0, "soft_bounces"=>0}}, "scheduled_date"=>"2016-04-09 06:10:00", "filter"=>[{"search"=>{"listid.id"=>{"$nin"=>[50], "$in"=>[51]}}, "segment_data"=>[], "match"=>"or", "new"=>"true", "segments_query_txt"=>nil, "type"=>false}], "tags"=>"Assuropoil Animaux Actifs Natexo", "header"=>"EXISTS", "footer"=>"EXISTS", "from_name"=>"Remboursement de vos frais vétérinaires - Un Jour, Une Astuce", "from_email"=>"", "form_name"=>"", "reply_to"=>"xxxx", "delivered"=>1597, "unique_views"=>615, "viewed"=>795, "clicked"=>28, "clicker"=>11, "hard_bounce"=>0, "soft_bounce"=>0, "unsub"=>37, "mirror_click"=>4, "complaints"=>3, "links_message"=>{"xxx"=>{"clicked"=>0}, "xxxxx}"=>{"clicked"=>28}}, "to_field"=>"", "share_link"=>"xxxx"},
def sib
@sib ||= Mailin.new("xxxx","xxxx")
end
def shoot_criteria
{ "type"=>"classic", "status" => "sent", "page"=>1,"page_limit"=>1000 }
end
def shoots
@shoots ||= sib.get_campaigns_v2(shoot_criteria)
end
def needed_records
first_cut = shoots.dig('data')
final_cut = first_cut.dig('campaign_records')
end
def campaign_records
@campaign_records ||= needed_records.map
end
def records
campaign_records.order("campaign_records.id ASC")
end
SQL (1.0ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "134"], ["created_at", "2016-06-12 11:19:11.429455"], ["updated_at", "2016-06-12 11:19:11.429455"]]
(0.1ms) ROLLBACK
Completed 500 Internal Server Error in 10497ms (ActiveRecord: 678.0ms)
ActiveRecord::RecordNotUnique (PG::UniqueViolation: ERROR: duplicate key value violates unique constraint "shoots_pkey"
DETAIL: Key (id)=(137) already exists.
: INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"):
crova@crova-pc:~/Shelter/Dev/dash$ rake db:migrate VERSION=20160609200005
== 20160609203333 CreateShoots: reverting =====================================
-- drop_table(:shoots)
-> 0.0013s
== 20160609203333 CreateShoots: reverted (0.0034s) ============================
crova@crova-pc:~/Shelter/Dev/dash$ rake db:migrate
== 20160609203333 CreateShoots: migrating =====================================
-- create_table(:shoots)
-> 0.0208s
== 20160609203333 CreateShoots: migrated (0.0209s) ============================
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "156"]]
(0.1ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "156"], ["created_at", "2016-06-12 12:31:32.710925"], ["updated_at", "2016-06-12 12:31:32.710925"]]
(3.9ms) COMMIT
(0.2ms) BEGIN
SQL (0.7ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 156], ["campaign_name", "WM - Relance - 2 Campagnes"], ["subject", "{PRENOM} Pegue seus PRESENTES !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n<style type=\"text/css\">\nimg {\n\tbackground-position: center;\n\tmargin: auto;\n\tdisplay: block;\n}\n</style>\n</head>\n<body bgcolor=\"#ffffff\">\n<!-- Header Begins -->\n<center><div>\n<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></div></center>\n\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <div>\n\t<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">{PRENOM}, </p></td>\n </tr>\n\n</table>\n\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n \n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">Agora voc&ecirc; faz parte do <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MAIOR</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MELHOR</strong></font> clube de ofertas da internet:</p></td>\n </tr>\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\"><font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Sorteios</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Amostras Gr&aacute;tis</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Descontos</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>E-books gr&aacute;tis</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>MUITO MAIS</strong></font>...</p></td>\n </tr>\n</table>\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">E pra mostrar que a gente n&atilde;o est&aacute; brincando, aqui est&atilde;o seus primeiros presentes :</p></td>\n </tr>\n</table>\n<br />\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td width=\"320\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block; padding: 3px 5px 3px 5px;\">E-book GRATUITO com TUDO o que voc&ecirc; precisa saber pra GANHAR DINHEIRO na internet:</p></td>\n <td width=\"640\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: center; display: block; padding: 3px 5px 3px 5px; margin:auto;\">Pra aproveitar a Mega-Sena: 6 apostas pelo pre&ccedil;o de 3! Deixe sua SORTE falar mais alto !</p></td></tr>\n <tr>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://actualmanager.com/click.php?aspid=ef65ebe0fed701bd1ba3cd3fac5fa835\">E-book Gratuito !</a></center></td>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://www.r-mkt.com/redirect/to/crovamedia/lottoland/{EMAIL}/keepmedia.go2cloud.org/aff_c?offer_id=5561&aff_id=1227&file_id=3363&url_id=125361\">Aposta EM DOBRO !</a></center></td>\n </tr>\n</table>\n<br />\n<br />\n</div></center>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<!-- Pixel Check List -->\n<img src=\"http://actualmanager.com/print.php?aspid=102566\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" />\n<!-- PixelLottoland -->\n<img src=\"http://tracking.bluesharkmedia.com.br/aff_i?offer_id=5561&aff_id=1227&file_id=3363\" width=\"1\" height=\"1\" />\n<!-- Footer Ends --> </body>"], ["entered", "2016-05-01"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 4998], ["remaining", 0], ["listid", "[90, 91]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-02"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[90, 91]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "Welcome Mail Inativos 2Campaigns relance"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 4993], ["unique_views", 162], ["viewed", 194], ["clicked", 29], ["clicker", 24], ["hard_bounce", 3], ["soft_bounce", 2], ["unsub", 10], ["mirror_click", 16], ["complaints", 4], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":3372,\"delivered\":3372,\"viewed\":47,\"clicked\":14,\"hard_bounce\":0,\"unsub\":2,\"complaints\":0,\"unique_views\":46,\"unique_clicks\":11,\"soft_bounces\":0},\"yahoo.com.br\":{\"sent\":765,\"delivered\":765,\"viewed\":116,\"clicked\":7,\"hard_bounce\":0,\"unsub\":6,\"complaints\":2,\"unique_views\":89,\"unique_clicks\":6,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":38,\"delivered\":38,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":264,\"delivered\":264,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":1,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":13,\"delivered\":12,\"viewed\":0,\"clicked\":0,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":181,\"delivered\":181,\"viewed\":10,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":9,\"unique_clicks\":1,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":62,\"delivered\":62,\"viewed\":3,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":32,\"delivered\":31,\"viewed\":1,\"clicked\":2,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":2,\"soft_bounces\":0},\"globo.com\":{\"sent\":12,\"delivered\":12,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":38,\"delivered\":38,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":12,\"delivered\":12,\"viewed\":1,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":1,\"unique_views\":1,\"unique_clicks\":1,\"soft_bounces\":0},\"live.com\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":9,\"delivered\":9,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"magazineluiza.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":7,\"delivered\":7,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.723610"], ["id", 117]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "155"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "155"], ["created_at", "2016-06-12 12:31:32.743238"], ["updated_at", "2016-06-12 12:31:32.743238"]]
(4.0ms) COMMIT
(0.2ms) BEGIN
SQL (0.7ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 155], ["campaign_name", "WM - Relance - 2 Campagnes"], ["subject", "{PRENOM} Pegue seus PRESENTES !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n<style type=\"text/css\">\nimg {\n\tbackground-position: center;\n\tmargin: auto;\n\tdisplay: block;\n}\n</style>\n</head>\n<body bgcolor=\"#ffffff\">\n<!-- Header Begins -->\n<center><div>\n<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></div></center>\n\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <div>\n\t<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">{PRENOM}, </p></td>\n </tr>\n\n</table>\n\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n \n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">Agora voc&ecirc; faz parte do <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MAIOR</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MELHOR</strong></font> clube de ofertas da internet:</p></td>\n </tr>\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\"><font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Sorteios</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Amostras Gr&aacute;tis</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Descontos</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>E-books gr&aacute;tis</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>MUITO MAIS</strong></font>...</p></td>\n </tr>\n</table>\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">E pra mostrar que a gente n&atilde;o est&aacute; brincando, aqui est&atilde;o seus primeiros presentes :</p></td>\n </tr>\n</table>\n<br />\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td width=\"320\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block; padding: 3px 5px 3px 5px;\">E-book GRATUITO com TUDO o que voc&ecirc; precisa saber pra GANHAR DINHEIRO na internet:</p></td>\n <td width=\"640\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: center; display: block; padding: 3px 5px 3px 5px; margin:auto;\">Pra aproveitar a Mega-Sena: 6 apostas pelo pre&ccedil;o de 3! Deixe sua SORTE falar mais alto !</p></td></tr>\n <tr>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://actualmanager.com/click.php?aspid=ef65ebe0fed701bd1ba3cd3fac5fa835\">E-book Gratuito !</a></center></td>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://www.r-mkt.com/redirect/to/crovamedia/lottoland/{EMAIL}/keepmedia.go2cloud.org/aff_c?offer_id=5561&aff_id=1227&file_id=3363&url_id=125361\">Aposta EM DOBRO !</a></center></td>\n </tr>\n</table>\n<br />\n<br />\n</div></center>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<!-- Pixel Check List -->\n<img src=\"http://actualmanager.com/print.php?aspid=102566\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" />\n<!-- PixelLottoland -->\n<img src=\"http://tracking.bluesharkmedia.com.br/aff_i?offer_id=5561&aff_id=1227&file_id=3363\" width=\"1\" height=\"1\" />\n<!-- Footer Ends --> </body>"], ["entered", "2016-05-01"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 10000], ["remaining", 0], ["listid", "[87]"], ["exclude_list", "[14, 37]"], ["scheduled_date", "2016-05-01"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[14, 37], \"$in\"=>[87]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "Welcome Mail Inativos 2Campaigns relance"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 9969], ["unique_views", 230], ["viewed", 272], ["clicked", 58], ["clicker", 45], ["hard_bounce", 23], ["soft_bounce", 8], ["unsub", 14], ["mirror_click", 27], ["complaints", 2], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":6831,\"delivered\":6830,\"viewed\":41,\"clicked\":17,\"hard_bounce\":0,\"unsub\":5,\"complaints\":0,\"unique_views\":39,\"unique_clicks\":13,\"soft_bounces\":1},\"yahoo.com.br\":{\"sent\":1431,\"delivered\":1431,\"viewed\":174,\"clicked\":24,\"hard_bounce\":0,\"unsub\":6,\"complaints\":2,\"unique_views\":140,\"unique_clicks\":20,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":517,\"delivered\":517,\"viewed\":8,\"clicked\":3,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":8,\"unique_clicks\":3,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":77,\"delivered\":55,\"viewed\":3,\"clicked\":0,\"hard_bounce\":22,\"unsub\":1,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":22,\"delivered\":22,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":14,\"delivered\":14,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":56,\"delivered\":56,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":70,\"delivered\":70,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":133,\"delivered\":133,\"viewed\":5,\"clicked\":3,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":1,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":391,\"delivered\":391,\"viewed\":23,\"clicked\":5,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":21,\"unique_clicks\":5,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":3,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"globo.com\":{\"sent\":26,\"delivered\":26,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"magazineluiza.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":6,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"usp.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.755836"], ["id", 118]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "154"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "154"], ["created_at", "2016-06-12 12:31:32.775699"], ["updated_at", "2016-06-12 12:31:32.775699"]]
(4.0ms) COMMIT
(0.2ms) BEGIN
SQL (0.6ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 154], ["campaign_name", "Glambox - Click Wise - Mulheres Inactifs"], ["subject", "{PRENOM} Você mais LINDA! Por muito MENOS !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n<table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\">\n\t<tbody><tr>\n\t\t<td rowspan=\"3\">\n\t\t\t<a href=\"http://my.pampanetwork.com/scripts/click.php?a_aid=5704fe4fbc65d&amp;a_bid=3c29c56b\" target=\"_blank\"><img src=\"https://s3.amazonaws.com/Glambox.Content.MediaObject/MediaFile_10372.jpg\" width=\"300\" height=\"494\" border=\"0\" alt=\"www.glambox.com.br\" style=\"display: block;\"></a></td>\n\t\t<td>\n\t\t\t<a href=\"http://my.pampanetwork.com/scripts/click.php?a_aid=5704fe4fbc65d&amp;a_bid=3c29c56b\" target=\"_blank\"><img src=\"https://s3.amazonaws.com/Glambox.Content.MediaObject/MediaFile_10373.jpg\" width=\"300\" height=\"313\" border=\"0\" alt=\"www.glambox.com.br\" style=\"display: block;\"></a></td>\n\t</tr>\n\t\t<tr>\n\t\t<td style=\"padding:15px;\" bgcolor=\"#eb4b4b\" width=\"300\" height=\"86\" valign=\"top\">\n \t <center><span style=\"font-family:'Gotham Light','Tahoma','Century Gothic','Arial';font-size:9px;color:#ffffff;\">Termos: <a href=\"http://my.pampanetwork.com/scripts/click.php?a_aid=5704fe4fbc65d&amp;a_bid=3c29c56b\" target=\"_blank\" style=\"color:#ffffff\">pol&iacute;tica de privacidade da Glambox Brasil</a><br><br></span><span style=\"font-family:'Gotham Light','Tahoma','Century Gothic','Arial';font-size:11px;color:#ffffff;\"></span>\n</center></td>\n\t</tr><tr>\n\t\t<td>\n\t\t\t<a href=\"http://my.pampanetwork.com/scripts/click.php?a_aid=5704fe4fbc65d&amp;a_bid=3c29c56b\" target=\"_blank\"><img src=\"https://s3.amazonaws.com/Glambox.Content.MediaObject/MediaFile_10393.jpg\" width=\"300\" height=\"95\" border=\"0\" alt=\"www.glambox.com.br\" style=\"display: block;\"></a></td>\n\t</tr>\n</tbody></table>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> </body>"], ["entered", "2016-05-01"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 2500], ["remaining", 0], ["listid", "[90]"], ["exclude_list", "[14, 37]"], ["scheduled_date", "2016-05-01"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[14, 37], \"$in\"=>[90]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "glambox inactifs clickwise mulheres beauty"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "GlamBox - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 2484], ["unique_views", 64], ["viewed", 74], ["clicked", 8], ["clicker", 6], ["hard_bounce", 13], ["soft_bounce", 2], ["unsub", 2], ["mirror_click", 2], ["complaints", 1], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":1641,\"delivered\":1641,\"viewed\":19,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":19,\"unique_clicks\":2,\"soft_bounces\":0},\"yahoo.com.br\":{\"sent\":437,\"delivered\":437,\"viewed\":46,\"clicked\":4,\"hard_bounce\":0,\"unsub\":1,\"complaints\":1,\"unique_views\":37,\"unique_clicks\":3,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":164,\"delivered\":164,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":4,\"delivered\":4,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":30,\"delivered\":30,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":69,\"delivered\":69,\"viewed\":3,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":23,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":13,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":20,\"delivered\":20,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":17,\"delivered\":17,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.787550"], ["id", 119]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "153"]]
(0.1ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "153"], ["created_at", "2016-06-12 12:31:32.804718"], ["updated_at", "2016-06-12 12:31:32.804718"]]
(4.0ms) COMMIT
(0.1ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 153], ["campaign_name", "Mais Aprendizagem - Actual Sales - Inativos Men"], ["subject", "{PRENOM} Aprenda a ler MAIS e MELHOR !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<html>\n<head>\n<title>email</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n</head>\n<body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n\n \n <!-- Header Ends -->\n <center>\n<!-- Save for Web Slices (email.psd) -->\n<table id=\"Table_01\" width=\"601\" height=\"601\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:601px; margin:0 auto;\">\n <tr>\n <td colspan=\"2\" rowspan=\"2\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_01.jpg\" width=\"201\" height=\"199\" alt=\"\"></td>\n <td colspan=\"3\"><a href=\"http://actualmanager.com/click.php?aspid=a9563a186fdd9b91eb9681f69134379d\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_02.jpg\" width=\"399\" height=\"100\" alt=\"\"></a></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"1\" height=\"100\" alt=\"\"></td>\n </tr>\n <tr>\n <td colspan=\"2\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_03.jpg\" width=\"196\" height=\"99\" alt=\"\"></td>\n <td rowspan=\"2\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_04.jpg\" width=\"203\" height=\"195\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"1\" height=\"99\" alt=\"\"></td>\n </tr>\n <tr>\n <td rowspan=\"2\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_05.jpg\" width=\"101\" height=\"201\" alt=\"\"></td>\n <td colspan=\"3\" rowspan=\"2\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_06.jpg\" width=\"296\" height=\"201\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"1\" height=\"96\" alt=\"\"></td>\n </tr>\n <tr>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_07.jpg\" width=\"203\" height=\"105\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"1\" height=\"105\" alt=\"\"></td>\n </tr>\n <tr>\n <td colspan=\"3\"><div style=\"height:76px; color:#111; font-family:Impact, Haettenschweiler, 'Franklin Gothic Bold', 'Arial Black', sans-serif; padding:10px;\">Aprenda como ler <span style=\"color:#F60;\">50 OU MAIS LIVROS</span> por ano, treinando apenas <span style=\"color:#F60;\">12 MINUTOS</span> por dia, aumentando a concentra&ccedil;&atilde;o e compreens&atilde;o.</div></td>\n <td colspan=\"2\" rowspan=\"2\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_09.jpg\" width=\"299\" height=\"200\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"1\" height=\"96\" alt=\"\"></td>\n </tr>\n <tr>\n <td colspan=\"3\"><a href=\"http://actualmanager.com/click.php?aspid=a9563a186fdd9b91eb9681f69134379d\"><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/email_10.jpg\" width=\"301\" height=\"104\" alt=\"\"></a></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"1\" height=\"104\" alt=\"\"></td>\n </tr>\n <tr>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"101\" height=\"1\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"100\" height=\"1\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"100\" height=\"1\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"96\" height=\"1\" alt=\"\"></td>\n <td><img style=\"display:block; border:none; outline:none; margin:0px; padding:0px;\" src=\"http://avalanchedeclientes.com.br/email-marketing/137/images/spacer.gif\" width=\"203\" height=\"1\" alt=\"\"></td>\n <td></td>\n </tr>\n</table>\n<!-- End Save for Web Slices -->\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<img src=\"http://actualmanager.com/print.php?aspid=102973\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" /></body>\n</html>"], ["entered", "2016-05-01"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 2091], ["remaining", 0], ["listid", "[91]"], ["exclude_list", "[14, 37]"], ["scheduled_date", "2016-05-01"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[14, 37], \"$in\"=>[91]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "actual sales inativos maisaprendizagem men"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Mais Aprendizagem - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 2070], ["unique_views", 85], ["viewed", 100], ["clicked", 5], ["clicker", 5], ["hard_bounce", 17], ["soft_bounce", 5], ["unsub", 4], ["mirror_click", 6], ["complaints", 5], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":1238,\"delivered\":1237,\"viewed\":14,\"clicked\":1,\"hard_bounce\":1,\"unsub\":1,\"complaints\":0,\"unique_views\":14,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":132,\"delivered\":132,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com.br\":{\"sent\":457,\"delivered\":457,\"viewed\":73,\"clicked\":3,\"hard_bounce\":0,\"unsub\":2,\"complaints\":3,\"unique_views\":59,\"unique_clicks\":3,\"soft_bounces\":1},\"yahoo.com\":{\"sent\":28,\"delivered\":28,\"viewed\":3,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":1,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":16,\"delivered\":16,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":35,\"delivered\":19,\"viewed\":1,\"clicked\":0,\"hard_bounce\":16,\"unsub\":1,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":21,\"delivered\":21,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":67,\"delivered\":67,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":10,\"delivered\":10,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":2,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"globomail.com\":{\"sent\":7,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":6,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":6,\"delivered\":6,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"aol.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.816084"], ["id", 120]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "152"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "152"], ["created_at", "2016-06-12 12:31:32.831486"], ["updated_at", "2016-06-12 12:31:32.831486"]]
(4.0ms) COMMIT
(0.2ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 152], ["campaign_name", "WM - 2 Campagnes - CTBR"], ["subject", "{PRENOM} Pegue seus PRESENTES !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><meta content=\"text/html; charset=iso-8859-1\" http-equiv=\"Content-Type\" />\n<style type=\"text/css\">\nimg {\n\tbackground-position: center;\n\tmargin: auto;\n\tdisplay: block;\n}</style>\n<!-- Header Begins -->\n<center>\n\t<div>\n\t\t<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">\n\t\t\tA Boa do Dia !</p>\n\t</div>\n</center>\n<center>\n\t<a href=\"[MIRROR]\" style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \">Navegador</a> <a href=\"[UNSUBSCRIBE]\" style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \">Descadastrar</a></center>\n<br />\n<br />\n<br />\n<!-- Header Ends -->\n<center>\n\t<div>\n\t\t<table border=\"0\" style=\"margin:auto;\" width=\"640px;\">\n\t\t\t<tbody>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">\n\t\t\t\t\t\t\t{PRENOM}, seja bem vinda (o) ! Voc&ecirc; se cadastrou no nosso programa atrav&eacute;s do \"Clube dos Testadores\"!</p>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t</tbody>\n\t\t</table>\n\t\t<table border=\"0\" style=\"margin:auto;\" width=\"640px;\">\n\t\t\t<tbody>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">\n\t\t\t\t\t\t\tAgora voc&ecirc; faz parte do <font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"2\"><strong>MAIOR</strong></font> e <font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"2\"><strong>MELHOR</strong></font> clube de ofertas da internet:</p>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">\n\t\t\t\t\t\t\t<font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><strong>Sorteios</strong></font>, <font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><strong>Amostras Gr&aacute;tis</strong></font>, <font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><strong>Descontos</strong></font>, <font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><strong>E-books gr&aacute;tis</strong></font> e <font color=\"#d9251c\" face=\"Arial, Helvetica, sans-serif\" size=\"4\"><strong>MUITO MAIS</strong></font>...</p>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t</tbody>\n\t\t</table>\n\t\t<br />\n\t\t<table border=\"0\" style=\"margin:auto;\" width=\"640px;\">\n\t\t\t<tbody>\n\t\t\t\t<tr>\n\t\t\t\t\t<td>\n\t\t\t\t\t\t<p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">\n\t\t\t\t\t\t\tE pra mostrar que a gente n&atilde;o est&aacute; brincando, aqui est&atilde;o seus primeiros presentes :</p>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t</tbody>\n\t\t</table>\n\t\t<br />\n\t\t<br />\n\t\t<table border=\"0\" style=\"margin:auto;\" width=\"640px;\">\n\t\t\t<tbody>\n\t\t\t\t<tr>\n\t\t\t\t\t<td width=\"320\">\n\t\t\t\t\t\t<p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block; padding: 3px 5px 3px 5px;\">\n\t\t\t\t\t\t\tE-book GRATUITO com TUDO o que voc&ecirc; precisa saber pra GANHAR DINHEIRO na internet:</p>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td width=\"640\">\n\t\t\t\t\t\t<p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: center; display: block; padding: 3px 5px 3px 5px; margin:auto;\">\n\t\t\t\t\t\t\tPra aproveitar a Mega-Sena: 6 apostas pelo pre&ccedil;o de 3! Deixe sua SORTE falar mais alto !</p>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t\t<tr>\n\t\t\t\t\t<td width=\"320\">\n\t\t\t\t\t\t<center>\n\t\t\t\t\t\t\t<a href=\"http://actualmanager.com/click.php?aspid=ef65ebe0fed701bd1ba3cd3fac5fa835\" style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \">E-book Gratuito !</a></center>\n\t\t\t\t\t</td>\n\t\t\t\t\t<td width=\"320\">\n\t\t\t\t\t\t<center>\n\t\t\t\t\t\t\t<a href=\"http://www.r-mkt.com/redirect/to/crovamedia/lottoland/{EMAIL}/keepmedia.go2cloud.org/aff_c?offer_id=5561&amp;aff_id=1227&amp;file_id=3363&amp;url_id=125361\" style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \">Aposta EM DOBRO !</a></center>\n\t\t\t\t\t</td>\n\t\t\t\t</tr>\n\t\t\t</tbody>\n\t\t</table>\n\t\t<br />\n\t\t&nbsp;</div>\n</center>\n<!-- Footer Begins -->\n<center>\n\t<table border=\"0\" margin=\"auto\" width=\"600\">\n\t\t<tbody>\n\t\t\t<tr style=\"width:540px; text-align:center; margin:auto;\">\n\t\t\t\t<td>\n\t\t\t\t\t<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">\n\t\t\t\t\t\tA Boa do Dia - Informa&ccedil;&otilde;es legais</p>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t\t<tr>\n\t\t\t\t<td>\n\t\t\t\t\t<span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tA Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a<br />\n\t\t\t\t\tRCS Nanterre 802254284<br />\n\t\t\t\t\tVoc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net ! </span></td>\n\t\t\t</tr>\n\t\t</tbody>\n\t</table>\n</center>\n<!-- Pixel Check List --><img alt=\"0\" border=\"0\" height=\"1\" src=\"http://actualmanager.com/print.php?aspid=102566\" width=\"1\" /> <!-- PixelLottoland --><img height=\"1\" src=\"http://tracking.bluesharkmedia.com.br/aff_i?offer_id=5561&amp;aff_id=1227&amp;file_id=3363\" width=\"1\" /> <!-- Footer Ends --></body>"], ["entered", "2016-04-29"], ["modified", "2016-04-29"], ["status", "Sent"], ["sent", 289], ["remaining", 0], ["listid", "[12]"], ["exclude_list", "[14, 37]"], ["scheduled_date", "2016-04-29"], ["filter", "[{\"search\"=>{\"$or\"=>[{\"$and\"=>[{\"entered\"=>{\"$gte\"=>{\"sec\"=>1461880800, \"usec\"=>0}, \"$lte\"=>{\"sec\"=>1461967199, \"usec\"=>0}}}]}], \"listid.id\"=>{\"$nin\"=>[14, 37], \"$in\"=>[12]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[[{\"attribute\"=>\"added_date\", \"condition\"=>\"dateRange\", \"search_text\"=>{\"fromDate\"=>\"2016-04-29\", \"toDate\"=>\"2016-04-29\", \"camp_id\"=>\"\"}, \"dataType\"=>\"date\", \"query_str\"=>\" [ Date d'ajout Entre 2 dates De: Ven, 29.04.2016 - À: Ven, 29.04.2016 ] \"}]], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>\" [ Date d'ajout Entre 2 dates De: Ven, 29.04.2016 - À: Ven, 29.04.2016 ] \", \"type\"=>false}]"], ["tags", "Welcome Mail Inativos 2Campaigns"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 276], ["unique_views", 24], ["viewed", 25], ["clicked", 11], ["clicker", 11], ["hard_bounce", 9], ["soft_bounce", 4], ["unsub", 4], ["mirror_click", 3], ["complaints", 0], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":67,\"delivered\":67,\"viewed\":17,\"clicked\":6,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":16,\"unique_clicks\":6,\"soft_bounces\":0},\"gmail.com\":{\"sent\":108,\"delivered\":105,\"viewed\":1,\"clicked\":0,\"hard_bounce\":3,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":42,\"delivered\":42,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":31,\"delivered\":29,\"viewed\":3,\"clicked\":1,\"hard_bounce\":2,\"unsub\":1,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":1,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":6,\"delivered\":4,\"viewed\":2,\"clicked\":2,\"hard_bounce\":2,\"unsub\":1,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":2,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":5,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":4},\"hotmail.com.br\":{\"sent\":2,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"aol.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.841795"], ["id", 121]]
(3.9ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "151"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "151"], ["created_at", "2016-06-12 12:31:32.853831"], ["updated_at", "2016-06-12 12:31:32.853831"]]
(4.2ms) COMMIT
(0.1ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 151], ["campaign_name", "Fita Toro - Actual Sales - Ativos Men"], ["subject", "{PRENOM} Infinitas Possibilidades. Confira todas elas!"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\" \"http://www.w3.org/TR/REC-html40/loose.dtd\">\n<html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <title>FIAT Toro</title>\n </head>\n <body>\n <!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\">\n <tr>\n <td>\n <a href=\"http://actualmanager.com/click.php?aspid=a51ec00599c28d70bc5c7080a72cedc0\" target=\"_blank\"><img src=\"https://fffancy.s3.amazonaws.com/a3891327222717bbe34a2a8f53501cda.jpg\" alt=\"\" width=\"600\" height=\"611\" usemap=\"#Map\" border=\"0\" /><map name=\"Map\"></map>\n</a>\n </td>\n </tr>\n <tr>\n <td><a href=\"http://actualmanager.com/click.php?aspid=a51ec00599c28d70bc5c7080a72cedc0\" target=\"_blank\"><img src=\"https://fffancy.s3.amazonaws.com/f9d50e6321f372b4df25f347496e7ef9.jpg\" alt=\"\" width=\"600\" height=\"677\" /></a></td>\n </tr>\n <tr>\n <td>\n<a href=\"http://actualmanager.com/click.php?aspid=a51ec00599c28d70bc5c7080a72cedc0\" target=\"_blank\">\n <img src=\"https://fffancy.s3.amazonaws.com/08a1d05601ac7220a2251b34a98105ff.jpg\" alt=\"\" width=\"600\" height=\"667\" usemap=\"#Map2\" border=\"0\" /><map name=\"Map2\"></map>\n</a>\n </td>\n </tr>\n <tr>\n <td bgcolor=\"#f3f4f7\" height=\"122\" align=\"center\"><font size=\"3\" color=\"#84878e\" face=\"Arial, Helvetica, sans-serif\">Preencha o formul&aacute;rio e comece mais cedo<br />a sua experi&ecirc;ncia com o Fiat Toro.</font></td>\n </tr>\n <tr>\n <td><a href=\"http://actualmanager.com/click.php?aspid=a51ec00599c28d70bc5c7080a72cedc0\" target=\"_blank\"><img src=\"https://fffancy.s3.amazonaws.com/6f53a9dffbbdc98b339470fa870b2ccf.jpg\" alt=\"\" width=\"600\" height=\"106\" /></a></td>\n </tr>\n </table>\n <!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n <img src=\"http://ad.bdstracking.com/aff_i?offer_id=2581&aff_id=1342&file_id=18565\" width=\"1\" height=\"1\" /><img src=\"http://actualmanager.com/print.php?aspid=103457\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" /></body>\n</html>"], ["entered", "2016-04-29"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 2978], ["remaining", 0], ["listid", "[34, 75]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-02"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[34, 75]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "actual sales ativos fiat toro carros"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Fiat Toro - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 2941], ["unique_views", 535], ["viewed", 730], ["clicked", 45], ["clicker", 38], ["hard_bounce", 0], ["soft_bounce", 37], ["unsub", 8], ["mirror_click", 3], ["complaints", 5], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":957,\"delivered\":957,\"viewed\":398,\"clicked\":19,\"hard_bounce\":0,\"unsub\":4,\"complaints\":4,\"unique_views\":274,\"unique_clicks\":19,\"soft_bounces\":1},\"gmail.com\":{\"sent\":610,\"delivered\":610,\"viewed\":67,\"clicked\":9,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":60,\"unique_clicks\":6,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":190,\"delivered\":190,\"viewed\":48,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":34,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":37,\"delivered\":37,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":371,\"delivered\":371,\"viewed\":70,\"clicked\":8,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":63,\"unique_clicks\":6,\"soft_bounces\":0},\"icloud.com\":{\"sent\":16,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":16},\"oi.com.br\":{\"sent\":28,\"delivered\":28,\"viewed\":6,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":535,\"delivered\":535,\"viewed\":88,\"clicked\":7,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":63,\"unique_clicks\":5,\"soft_bounces\":0},\"live.com\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":13,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":11},\"ymail.com\":{\"sent\":16,\"delivered\":16,\"viewed\":9,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":37,\"delivered\":37,\"viewed\":17,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":1,\"unique_views\":11,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":6,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"brturbo.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":35,\"delivered\":35,\"viewed\":6,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":12,\"delivered\":12,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":2,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"zipmail.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.866972"], ["id", 122]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "150"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "150"], ["created_at", "2016-06-12 12:31:32.883010"], ["updated_at", "2016-06-12 12:31:32.883010"]]
(4.0ms) COMMIT
(0.2ms) BEGIN
SQL (0.6ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 150], ["campaign_name", "WM - Relance - 2 Campagnes"], ["subject", "{PRENOM} Pegue seus PRESENTES !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n<style type=\"text/css\">\nimg {\n\tbackground-position: center;\n\tmargin: auto;\n\tdisplay: block;\n}\n</style>\n</head>\n<body bgcolor=\"#ffffff\">\n<!-- Header Begins -->\n<center><div>\n<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></div></center>\n\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <div>\n\t<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">{PRENOM}, </p></td>\n </tr>\n\n</table>\n\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n \n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">Agora voc&ecirc; faz parte do <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MAIOR</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MELHOR</strong></font> clube de ofertas da internet:</p></td>\n </tr>\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\"><font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Sorteios</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Amostras Gr&aacute;tis</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Descontos</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>E-books gr&aacute;tis</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>MUITO MAIS</strong></font>...</p></td>\n </tr>\n</table>\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">E pra mostrar que a gente n&atilde;o est&aacute; brincando, aqui est&atilde;o seus primeiros presentes :</p></td>\n </tr>\n</table>\n<br />\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td width=\"320\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block; padding: 3px 5px 3px 5px;\">E-book GRATUITO com TUDO o que voc&ecirc; precisa saber pra GANHAR DINHEIRO na internet:</p></td>\n <td width=\"640\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: center; display: block; padding: 3px 5px 3px 5px; margin:auto;\">Pra aproveitar a Mega-Sena: 6 apostas pelo pre&ccedil;o de 3! Deixe sua SORTE falar mais alto !</p></td></tr>\n <tr>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://actualmanager.com/click.php?aspid=ef65ebe0fed701bd1ba3cd3fac5fa835\">E-book Gratuito !</a></center></td>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://www.r-mkt.com/redirect/to/crovamedia/lottoland/{EMAIL}/keepmedia.go2cloud.org/aff_c?offer_id=5561&aff_id=1227&file_id=3363&url_id=125361\">Aposta EM DOBRO !</a></center></td>\n </tr>\n</table>\n<br />\n<br />\n</div></center>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<!-- Pixel Check List -->\n<img src=\"http://actualmanager.com/print.php?aspid=102566\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" />\n<!-- PixelLottoland -->\n<img src=\"http://tracking.bluesharkmedia.com.br/aff_i?offer_id=5561&aff_id=1227&file_id=3363\" width=\"1\" height=\"1\" />\n<!-- Footer Ends --> </body>"], ["entered", "2016-04-29"], ["modified", "2016-04-29"], ["status", "Sent"], ["sent", 14181], ["remaining", 0], ["listid", "[83, 84, 85]"], ["exclude_list", "[5, 14, 33, 34, 37, 38, 75, 60]"], ["scheduled_date", "2016-04-29"], ["filter", "[{\"search\"=>{\"$or\"=>[{\"$and\"=>[{\"messages_sent.messageid\"=>{\"$exists\"=>1}, \"opened_message.messageid\"=>{\"$exists\"=>0}}]}, {\"$and\"=>[{\"messages_sent.messageid\"=>{\"$exists\"=>1}, \"opened_message.messageid\"=>{\"$exists\"=>0}}]}], \"listid.id\"=>{\"$nin\"=>[5, 14, 33, 34, 37, 38, 75, 60], \"$in\"=>[83, 84, 85]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[[{\"attribute\"=>\"non_readers_date\", \"condition\"=>\"\", \"search_text\"=>{\"fromDate\"=>\"\", \"toDate\"=>\"\", \"camp_id\"=>\"cat\", \"link_key\"=>\"Welcome Mail Inativos 2Campaigns\", \"para4\"=>\"\", \"para5\"=>\"\"}, \"dataType\"=>\"date\", \"query_str\"=>\" [ EMAILS non ouverts , Tag: \\\"Welcome Mail Inativos 2Campaigns\\\" ] \"}], [{\"attribute\"=>\"non_readers_date\", \"condition\"=>\"\", \"search_text\"=>{\"fromDate\"=>\"\", \"toDate\"=>\"\", \"camp_id\"=>\"cat\", \"link_key\"=>\"Welcome Mail Inativos 2Campaigns relance\", \"para4\"=>\"\", \"para5\"=>\"\"}, \"dataType\"=>\"date\", \"query_str\"=>\" [ EMAILS non ouverts , Tag: \\\"Welcome Mail Inativos 2Campaigns relance\\\" ] \"}]], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>\" [ EMAILS non ouverts , Tag: \\\"Welcome Mail Inativos 2Campaigns\\\" ] <br/>OU<br/> [ EMAILS non ouverts , Tag: \\\"Welcome Mail Inativos 2Campaigns relance\\\" ] \", \"type\"=>false}]"], ["tags", "Welcome Mail Inativos 2Campaigns relance"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 14021], ["unique_views", 338], ["viewed", 413], ["clicked", 98], ["clicker", 79], ["hard_bounce", 6], ["soft_bounce", 156], ["unsub", 23], ["mirror_click", 33], ["complaints", 5], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":7599,\"delivered\":7597,\"viewed\":175,\"clicked\":36,\"hard_bounce\":0,\"unsub\":10,\"complaints\":0,\"unique_views\":136,\"unique_clicks\":27,\"soft_bounces\":2},\"hotmail.com\":{\"sent\":3313,\"delivered\":3311,\"viewed\":69,\"clicked\":24,\"hard_bounce\":2,\"unsub\":1,\"complaints\":2,\"unique_views\":60,\"unique_clicks\":20,\"soft_bounces\":0},\"yahoo.com.br\":{\"sent\":1573,\"delivered\":1573,\"viewed\":124,\"clicked\":21,\"hard_bounce\":1,\"unsub\":5,\"complaints\":3,\"unique_views\":102,\"unique_clicks\":17,\"soft_bounces\":1},\"yahoo.com\":{\"sent\":73,\"delivered\":73,\"viewed\":4,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":2,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":58,\"delivered\":55,\"viewed\":1,\"clicked\":0,\"hard_bounce\":3,\"unsub\":2,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":53,\"delivered\":53,\"viewed\":2,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":409,\"delivered\":409,\"viewed\":11,\"clicked\":3,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":10,\"unique_clicks\":3,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":93,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":93},\"rocketmail.com\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":131,\"delivered\":131,\"viewed\":9,\"clicked\":4,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":7,\"unique_clicks\":3,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":94,\"delivered\":94,\"viewed\":6,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"ymail.com\":{\"sent\":17,\"delivered\":17,\"viewed\":0,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":1,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":28,\"delivered\":28,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":10,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":10},\"uol.com.br\":{\"sent\":151,\"delivered\":151,\"viewed\":1,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":1,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":8,\"delivered\":8,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":7,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"sanepar.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":30,\"delivered\":30,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":16,\"delivered\":15,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"outlook.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":15,\"delivered\":15,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmail.com.br\":{\"sent\":9,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":9},\"usp.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmai.com\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"homail.com\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"prefeitura.sp.gov.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"mail.com\":{\"sent\":7,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":7},\"uel.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"magazineluiza.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.896953"], ["id", 123]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "149"]]
(0.1ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "149"], ["created_at", "2016-06-12 12:31:32.916952"], ["updated_at", "2016-06-12 12:31:32.916952"]]
(8.4ms) COMMIT
(0.1ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 149], ["campaign_name", "Queima 48 - Actual Sales - Mulheres Actifs"], ["subject", "{PRENOM} Boa Forma é pro ano todo !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n\t\n\t<!-- Main Content Begins -->\n\n<center>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"1068\" id=\"Table_01\" style=\"width:650px; margin:0 auto; font-family:Verdana, Geneva, sans-serif;\" width=\"650\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" valign=\"middle\"><img alt=\"VocC* jC! imaginou obter 1 ano de resultados em emagrecimento com apenas 8 semanas? \" border=\"0\" height=\"380\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_01.jpg\" style=\"display:block;\" width=\"650\" /></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" valign=\"middle\"><img alt=\"Sem ter que fazer algum tipo de dieta maluca, e ainda sem ter que ficar horas dentro de uma academia.\" border=\"0\" height=\"82\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_02.jpg\" style=\"display:block;\" width=\"650\" /></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" style=\" height:94px; font-size:24px; text-align:center; background:#000; text-transform:uppercase; color:#ff8501;\" valign=\"middle\"><strong style=\"padding-top:15px;\">Me d&ecirc; 15 minutos por dia e eu lhe<br />\n\t\t\tdou o corpo dos seus sonhos.</strong></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" style=\"height:36px; line-height:36px; text-align:center; color:#FFF; background:#000; font-family:12px; text-transform:uppercase; \" valign=\"middle\">Estas s&atilde;o as #4 maiores desculpas para n&atilde;o treinar...</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" rowspan=\"3\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"172\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_05.jpg\" style=\"display:block;\" width=\"70\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"100\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_06.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" rowspan=\"3\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"172\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_07.jpg\" style=\"display:block;\" width=\"42\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"100\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_08.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" rowspan=\"3\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"172\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_09.jpg\" style=\"display:block;\" width=\"43\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"100\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_10.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" rowspan=\"3\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"172\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_11.jpg\" style=\"display:block;\" width=\"30\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"100\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_12.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" rowspan=\"3\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"172\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_13.jpg\" style=\"display:block;\" width=\"77\" /></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" style=\"height:40px; background:#000; color:#fff; font-size:8px; text-align:center; line-height:9px;\" valign=\"middle\">Exerc&iacute;cio chato de longa dura&ccedil;&atilde;o</td>\n\t\t\t<td align=\"center\" style=\"height:40px; background:#000; color:#fff; font-size:8px; text-align:center; line-height:9px;\" valign=\"middle\">Ficar em cima de uma esteira igual a um rato de laborat&oacute;rio</td>\n\t\t\t<td align=\"center\" style=\"height:40px; background:#000; color:#fff; font-size:8px; text-align:center; line-height:9px;\" valign=\"middle\">Desperdi&ccedil;ar horas dentro de uma academia</td>\n\t\t\t<td align=\"center\" style=\"height:40px; background:#000; color:#fff; font-size:8px; text-align:center; line-height:9px;\" valign=\"middle\">Comer como um &quot;passarinho&quot;</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"32\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_18.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"32\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_19.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"32\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_20.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t\t<td align=\"center\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"32\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_21.jpg\" style=\"display:block;\" width=\"97\" /></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" valign=\"middle\"><img alt=\"\" border=\"0\" height=\"33\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_22.jpg\" style=\"display:block;\" width=\"650\" /></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" valign=\"middle\"><a href=\"http://actualmanager.com/click.php?aspid=dbf3b772194949dddd74b653d0a0136a\"><img alt=\"Sim! quero 1 ano de resultados em 8 semanas\" border=\"0\" height=\"148\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_23.jpg\" style=\"display:block;\" width=\"650\" /></a></td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td align=\"center\" colspan=\"9\" valign=\"middle\"><img alt=\"Vinicius Possebon e Q48 na mC-dia\" border=\"0\" height=\"123\" src=\"http://avalanchedeclientes.com.br/email-marketing/123/images/Vinicius-Possebon_24.jpg\" style=\"display:block;\" width=\"650\" /></td>\n\t\t</tr>\n\t</tbody>\n</table>\n</center>\n<!-- End Save for Web Slices -->\n\n<p>&nbsp;</p>\n\n\n\n<!-- Main Content Ends -->\n\t\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<p><img alt=\"0\" border=\"0\" height=\"1\" src=\"http://actualmanager.com/print.php?aspid=102667\" style=\"display:block;\" width=\"1\" /></p>\n</body></body>"], ["entered", "2016-04-28"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 3704], ["remaining", 0], ["listid", "[33]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-02"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[33]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "women Actifs actualsales saude"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 3677], ["unique_views", 671], ["viewed", 865], ["clicked", 24], ["clicker", 23], ["hard_bounce", 0], ["soft_bounce", 27], ["unsub", 10], ["mirror_click", 10], ["complaints", 4], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":1681,\"delivered\":1681,\"viewed\":373,\"clicked\":10,\"hard_bounce\":0,\"unsub\":5,\"complaints\":4,\"unique_views\":306,\"unique_clicks\":9,\"soft_bounces\":0},\"gmail.com\":{\"sent\":946,\"delivered\":946,\"viewed\":309,\"clicked\":9,\"hard_bounce\":0,\"unsub\":2,\"complaints\":0,\"unique_views\":225,\"unique_clicks\":9,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":22,\"delivered\":22,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":327,\"delivered\":327,\"viewed\":42,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":39,\"unique_clicks\":2,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":68,\"delivered\":68,\"viewed\":22,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":13,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":33,\"delivered\":33,\"viewed\":27,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":11,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":5,\"delivered\":5,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":254,\"delivered\":254,\"viewed\":31,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":27,\"unique_clicks\":2,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":68,\"delivered\":68,\"viewed\":9,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":8,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":27,\"delivered\":27,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":16,\"delivered\":16,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":31,\"delivered\":31,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":16,\"delivered\":16,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":23,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":23},\"msn.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":5,\"delivered\":5,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.934542"], ["id", 124]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "148"]]
(0.1ms) BEGIN
SQL (0.1ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "148"], ["created_at", "2016-06-12 12:31:32.950499"], ["updated_at", "2016-06-12 12:31:32.950499"]]
(4.1ms) COMMIT
(0.1ms) BEGIN
SQL (1.3ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 148], ["campaign_name", "Compare e Economize - Actual Sales - Actifs Men & No Gender"], ["subject", "{PRENOM} Poupe tempo e dinheiro, faça cotação grátis de Telefone, Internet e TV !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <head>\n \t<!-- NAME: POP-UP -->\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>Newsletter</title>\n \n <style type=\"text/css\">\n\t\tbody,#bodyTable,#bodyCell{\n\t\t\theight:100% !important;\n\t\t\tmargin:0;\n\t\t\tpadding:0;\n\t\t\twidth:100% !important;\n\t\t}\n\t\ttable{\n\t\t\tborder-collapse:collapse;\n\t\t}\n\t\timg,a img{\n\t\t\tborder:0;\n\t\t\toutline:none;\n\t\t\ttext-decoration:none;\n\t\t}\n\t\th1,h2,h3,h4,h5,h6{\n\t\t\tmargin:0;\n\t\t\tpadding:0;\n\t\t}\n\t\tp{\n\t\t\tmargin:1em 0;\n\t\t\tpadding:0;\n\t\t}\n\t\ta{\n\t\t\tword-wrap:break-word;\n\t\t}\n\t\t.ReadMsgBody{\n\t\t\twidth:100%;\n\t\t}\n\t\t.ExternalClass{\n\t\t\twidth:100%;\n\t\t}\n\t\t.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{\n\t\t\tline-height:100%;\n\t\t}\n\t\ttable,td{\n\t\t\tmso-table-lspace:0pt;\n\t\t\tmso-table-rspace:0pt;\n\t\t}\n\t\t#outlook a{\n\t\t\tpadding:0;\n\t\t}\n\t\timg{\n\t\t\t-ms-interpolation-mode:bicubic;\n\t\t}\n\t\tbody,table,td,p,a,li,blockquote{\n\t\t\t-ms-text-size-adjust:100%;\n\t\t\t-webkit-text-size-adjust:100%;\n\t\t}\n\t\t#bodyCell{\n\t\t\tpadding:0;\n\t\t}\n\t\t.mcnImage{\n\t\t\tvertical-align:bottom;\n\t\t}\n\t\t.mcnTextContent img{\n\t\t\theight:auto !important;\n\t\t}\n\t\ta.mcnButton{\n\t\t\tdisplay:block;\n\t\t}\n\t/*\n\t@tab Page\n\t@section background style\n\t@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.\n\t*/\n\t\tbody,#bodyTable{\n\t\t\t/*@editable*/background-color:#F5F5F5;\n\t\t}\n\t/*\n\t@tab Page\n\t@section background style\n\t@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.\n\t*/\n\t\t#bodyCell{\n\t\t\t/*@editable*/border-top:0;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 1\n\t@tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\n\t@style heading 1\n\t*/\n\t\th1{\n\t\t\t/*@editable*/color:#202020 !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:26px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:normal;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:center;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 2\n\t@tip Set the styling for all second-level headings in your emails.\n\t@style heading 2\n\t*/\n\t\th2{\n\t\t\t/*@editable*/color:#FFFFFF !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:26px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:normal;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 3\n\t@tip Set the styling for all third-level headings in your emails.\n\t@style heading 3\n\t*/\n\t\th3{\n\t\t\t/*@editable*/color:#404040 !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:18px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:normal;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 4\n\t@tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\n\t@style heading 4\n\t*/\n\t\th4{\n\t\t\t/*@editable*/color:#606060 !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:16px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:normal;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader style\n\t@tip Set the background color and borders for your email's preheader area.\n\t*/\n\t\t#templatePreheader{\n\t\t\t/*@editable*/background-color:#3498db;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader container\n\t@tip Set the background color and borders for your email's preheader text container.\n\t*/\n\t\t#preheaderBackground{\n\t\t\t/*@editable*/background-color:#3498db;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader text\n\t@tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.\n\t*/\n\t\t.preheaderContainer .mcnTextContent,.preheaderContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#FFFFFF;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:10px;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader link\n\t@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.preheaderContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#FFFFFF;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header style\n\t@tip Set the background color and borders for your email's header area.\n\t*/\n\t\t#templateHeader{\n\t\t\t/*@editable*/background-color:#3498db;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header container\n\t@tip Set the background color and borders for your email's header text container.\n\t*/\n\t\t#headerBackground{\n\t\t\t/*@editable*/background-color:#FFFFFF;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header text\n\t@tip Set the styling for your email's header text. Choose a size and color that is easy to read.\n\t*/\n\t\t.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#202020;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:16px;\n\t\t\t/*@editable*/line-height:150%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header link\n\t@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.headerContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#EE4343;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body style\n\t@tip Set the background color and borders for your email's body area.\n\t*/\n\t\t#templateBody{\n\t\t\t/*@editable*/background-color:#F5F5F5;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body container\n\t@tip Set the background color and borders for your email's body text container.\n\t*/\n\t\t#bodyBackground{\n\t\t\t/*@editable*/background-color:#FFFFFF;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body text\n\t@tip Set the styling for your email's body text. Choose a size and color that is easy to read.\n\t*/\n\t\t.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#202020;\n\t\t\t/*@editable*/font-family:Arial, 'arial Neue', arial, sans-serif;\n\t\t\t/*@editable*/font-size:16px;\n\t\t\t/*@editable*/line-height:150%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body link\n\t@tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.bodyContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#EE4343;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer style\n\t@tip Set the background color and borders for your email's footer area.\n\t*/\n\t\t#templateFooter{\n\t\t\t/*@editable*/background-color:#F5F5F5;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer container\n\t@tip Set the background color and borders for your email's footer text container.\n\t*/\n\t\t#footerBackground{\n\t\t\t/*@editable*/background-color:#FFFFFF;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer text\n\t@tip Set the styling for your email's footer text. Choose a size and color that is easy to read.\n\t*/\n\t\t.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#606060;\n\t\t\t/*@editable*/font-family:arial;\n\t\t\t/*@editable*/font-size:10px;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/text-align:center;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer link\n\t@tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.footerContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#606060;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t@media only screen and (max-width: 480px){\n\t\tbody,table,td,p,a,li,blockquote{\n\t\t\t-webkit-text-size-adjust:none !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\tbody{\n\t\t\twidth:100% !important;\n\t\t\tmin-width:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnTextContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnBoxedTextContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcpreview-image-uploader]{\n\t\t\twidth:100% !important;\n\t\t\tdisplay:none !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\timg[class=mcnImage]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnImageGroupContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageGroupContent]{\n\t\t\tpadding:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageGroupBlockInner]{\n\t\t\tpadding-bottom:0 !important;\n\t\t\tpadding-top:0 !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttbody[class=mcnImageGroupBlockOuter]{\n\t\t\tpadding-bottom:9px !important;\n\t\t\tpadding-top:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnCaptionTopContent],table[class=mcnCaptionBottomContent]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnCaptionLeftTextContentContainer],table[class=mcnCaptionRightTextContentContainer],table[class=mcnCaptionLeftImageContentContainer],table[class=mcnCaptionRightImageContentContainer],table[class=mcnImageCardLeftTextContentContainer],table[class=mcnImageCardRightTextContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardLeftImageContent],td[class=mcnImageCardRightImageContent]{\n\t\t\tpadding-right:18px !important;\n\t\t\tpadding-left:18px !important;\n\t\t\tpadding-bottom:0 !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardBottomImageContent]{\n\t\t\tpadding-bottom:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardTopImageContent]{\n\t\t\tpadding-top:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardLeftImageContent],td[class=mcnImageCardRightImageContent]{\n\t\t\tpadding-right:18px !important;\n\t\t\tpadding-left:18px !important;\n\t\t\tpadding-bottom:0 !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardBottomImageContent]{\n\t\t\tpadding-bottom:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardTopImageContent]{\n\t\t\tpadding-top:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnCaptionLeftContentOuter] td[class=mcnTextContent],table[class=mcnCaptionRightContentOuter] td[class=mcnTextContent]{\n\t\t\tpadding-top:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnCaptionBlockInner] table[class=mcnCaptionTopContent]:last-child td[class=mcnTextContent]{\n\t\t\tpadding-top:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnBoxedTextContentColumn]{\n\t\t\tpadding-left:18px !important;\n\t\t\tpadding-right:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnTextContent]{\n\t\t\tpadding-right:18px !important;\n\t\t\tpadding-left:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\timg[class=flexibleImage]{\n\t\t\theight:auto !important;\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section template width\n\t@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.\n\t*/\n\t\ttable[class=templateContainer]{\n\t\t\t/*@tab Mobile Styles\n@section template width\n@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.*/max-width:600px !important;\n\t\t\t/*@editable*/width:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 1\n\t@tip Make the first-level headings larger in size for better readability on small screens.\n\t*/\n\t\th1{\n\t\t\t/*@editable*/font-size:24px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 2\n\t@tip Make the second-level headings larger in size for better readability on small screens.\n\t*/\n\t\th2{\n\t\t\t/*@editable*/font-size:20px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 3\n\t@tip Make the third-level headings larger in size for better readability on small screens.\n\t*/\n\t\th3{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 4\n\t@tip Make the fourth-level headings larger in size for better readability on small screens.\n\t*/\n\t\th4{\n\t\t\t/*@editable*/font-size:16px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Boxed Text\n\t@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.\n\t*/\n\t\ttable[class=mcnBoxedTextContentContainer] td[class=mcnTextContent],td[class=mcnBoxedTextContentContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Preheader Visibility\n\t@tip Set the visibility of the email's preheader on small screens. You can hide it to save space.\n\t*/\n\t\ttable[id=templatePreheader]{\n\t\t\t/*@editable*/display:block !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Preheader Text\n\t@tip Make the preheader text larger in size for better readability on small screens.\n\t*/\n\t\ttd[class=preheaderContainer] td[class=mcnTextContent],td[class=preheaderContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:14px !important;\n\t\t\t/*@editable*/line-height:115% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Header Text\n\t@tip Make the header text larger in size for better readability on small screens.\n\t*/\n\t\ttd[class=headerContainer] td[class=mcnTextContent],td[class=headerContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Body Text\n\t@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.\n\t*/\n\t\ttd[class=bodyContainer] td[class=mcnTextContent],td[class=bodyContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section footer text\n\t@tip Make the body content text larger in size for better readability on small screens.\n\t*/\n\t\ttd[class=footerContainer] td[class=mcnTextContent],td[class=footerContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:14px !important;\n\t\t\t/*@editable*/line-height:115% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=footerContainer] a[class=utilityLink]{\n\t\t\tdisplay:block !important;\n\t\t}\n\n}</style></head>\n <body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\">\n\t<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\" id=\"bodyTable\">\n <tr>\n <td align=\"center\" valign=\"top\" id=\"bodyCell\" style=\"padding-bottom:40px;\">\n <!-- BEGIN TEMPLATE // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN PREHEADER // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"templatePreheader\">\n <tr>\n <td align=\"center\" valign=\"top\" style=\"padding-right:10px; padding-left:10px;\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"templateContainer\">\n <tr>\n <td align=\"center\" valign=\"top\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"preheaderBackground\">\n <tr>\n <td valign=\"top\" class=\"preheaderContainer\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnTextBlock\">\n <tbody class=\"mcnTextBlockOuter\">\n <tr>\n <td valign=\"top\" class=\"mcnTextBlockInner\">\n \n <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"mcnTextContentContainer\">\n <tbody><tr>\n \n \n </tr>\n </tbody></table>\n \n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" style=\"border-top-width: 0px;\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n <!-- // END PREHEADER -->\n </td>\n </tr>\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN HEADER // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"templateHeader\">\n <tr>\n <td align=\"center\" valign=\"top\" style=\"padding-right:10px; padding-left:10px;\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"templateContainer\">\n <tr>\n <td align=\"center\" valign=\"top\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnImageBlock\">\n <tbody class=\"mcnImageBlockOuter\">\n <tr>\n <td valign=\"top\" style=\"padding:0px\" class=\"mcnImageBlockInner\">\n <table align=\"left\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnImageContentContainer\">\n <tbody><tr>\n <td class=\"mcnImageContent\" valign=\"top\" style=\"padding-right: 0px; padding-left: 0px; padding-top: 0; padding-bottom: 0;\">\n \n \n <a href=\"http://actualmanager.com/click.php?aspid=a9f1c15fd531e67cfd81a4a51429cce7\"><img align=\"left\" alt=\"\" src=\"http://imagensinfo.com.s3.amazonaws.com/compareeconomize/banner.jpg\" width=\"600\" style=\"max-width:600px; padding-bottom: 0; display: inline !important; vertical-align: bottom;\" class=\"mcnImage\"></a>\n \n \n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n <!-- // END HEADER -->\n </td>\n </tr>\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN BODY // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"templateBody\">\n <tr>\n <td align=\"center\" valign=\"top\" style=\"padding-right:10px; padding-left:10px;\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"templateContainer\">\n <tr>\n <td align=\"center\" valign=\"top\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"bodyBackground\">\n <tr>\n <td valign=\"top\" class=\"bodyContainer\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table>\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnTextBlock\">\n <tbody class=\"mcnTextBlockOuter\">\n <tr>\n <td valign=\"top\" class=\"mcnTextBlockInner\">\n \n <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"mcnTextContentContainer\">\n <tbody><tr>\n \n <td valign=\"top\" class=\"mcnTextContent\" style=\"padding-top:9px; padding-right: 18px; padding-bottom: 9px; padding-left: 18px;\">\n <h1>Encontre a melhor op&ccedil;&atilde;o de Internet,<br />Telefone ou TV por Assinatura na sua regi&atilde;o!</h1>\n </td>\n </tr>\n </tbody></table>\n \n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n <tr>\n <td style=\"padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;\" valign=\"top\" align=\"center\" class=\"mcnButtonBlockInner\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnButtonContentContainer\" style=\"border-collapse: separate !important;border: 2px solid #1B7AB9;border-radius: 3px;background-color: #3498DB;\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" class=\"mcnButtonContent\" style=\"font-family: Arial; font-size: 22px; padding: 20px;\">\n <a class=\"mcnButton \" title=\"Quero saber mais\" href=\"http://actualmanager.com/click.php?aspid=a9f1c15fd531e67cfd81a4a51429cce7\" target=\"_self\" style=\"font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;\">Economizar at&eacute; R$52,90 por m&ecirc;s</a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnTextBlock\">\n <tbody class=\"mcnTextBlockOuter\">\n <tr>\n <td valign=\"top\" class=\"mcnTextBlockInner\">\n \n <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" class=\"mcnTextContentContainer\">\n <tbody><tr>\n \n <td valign=\"top\" class=\"mcnTextContent\" style=\"padding-top:9px; padding-right: 18px; padding-bottom: 9px; padding-left: 18px;\"><h3>O que &eacute; Compare e Economize?</h3>\n\t\t\t\n<p>Com tantas op&ccedil;&otilde;es de planos e combos de TV, Internet e Telefone no mercado, sabemos a dificuldade que o consumidor enfrenta na busca pelo plano que melhor atende suas necessidades. </p>\n<p>\nPor isso, n&oacute;s do Compare e Economize estamos empenhados em encontrar de maneira personalizada os melhores servi&ccedil;os com os menores pre&ccedil;os. Temos parcerias com todas empresas do setor e conseguimos obter ofertas exclusivas para nossos clientes. </p></td>\n </tr>\n </tbody></table>\n \n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n <tr>\n <td style=\"padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;\" valign=\"top\" align=\"center\" class=\"mcnButtonBlockInner\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnButtonContentContainer\" style=\"border-collapse: separate !important;border: 2px solid #1B7AB9;border-radius: 3px;background-color: #3498DB;\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" class=\"mcnButtonContent\" style=\"font-family: Arial; font-size: 22px; padding: 20px;\">\n <a class=\"mcnButton \" title=\"Quero saber mais\" href=\"http://actualmanager.com/click.php?aspid=a9f1c15fd531e67cfd81a4a51429cce7\" target=\"_self\" style=\"font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;\">Quero saber mais</a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n <!-- // END BODY -->\n </td>\n </tr>\n </table>\n <!-- // END TEMPLATE -->\n </td>\n </tr>\n </table>\n </center>\n\t\t<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n <img src=\"http://actualmanager.com/print.php?aspid=103396\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" /></body>\n</html>"], ["entered", "2016-04-28"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 2905], ["remaining", 0], ["listid", "[34, 75]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-01"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[34, 75]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "compareeconomize actifs actualsales men nogender"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Compare e Economize - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 2886], ["unique_views", 526], ["viewed", 683], ["clicked", 33], ["clicker", 32], ["hard_bounce", 0], ["soft_bounce", 19], ["unsub", 6], ["mirror_click", 4], ["complaints", 1], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":910,\"delivered\":910,\"viewed\":272,\"clicked\":14,\"hard_bounce\":0,\"unsub\":3,\"complaints\":0,\"unique_views\":226,\"unique_clicks\":13,\"soft_bounces\":0},\"gmail.com\":{\"sent\":596,\"delivered\":596,\"viewed\":144,\"clicked\":4,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":105,\"unique_clicks\":4,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":37,\"delivered\":37,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":367,\"delivered\":367,\"viewed\":58,\"clicked\":4,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":49,\"unique_clicks\":4,\"soft_bounces\":0},\"icloud.com\":{\"sent\":16,\"delivered\":16,\"viewed\":11,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":9,\"unique_clicks\":2,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":1,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":1,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":26,\"delivered\":26,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":533,\"delivered\":533,\"viewed\":102,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":61,\"unique_clicks\":1,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":189,\"delivered\":189,\"viewed\":49,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":38,\"unique_clicks\":1,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":13,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":13},\"ibest.com.br\":{\"sent\":6,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"brturbo.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":35,\"delivered\":35,\"viewed\":6,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":12,\"delivered\":12,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":36,\"delivered\":36,\"viewed\":13,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":1,\"unique_views\":9,\"unique_clicks\":1,\"soft_bounces\":0},\"globomail.com\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":15,\"delivered\":15,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":3,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"zipmail.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.961843"], ["id", 125]]
(4.0ms) COMMIT
Shoot Load (0.2ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "146"]]
(0.1ms) BEGIN
SQL (0.1ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "146"], ["created_at", "2016-06-12 12:31:32.980413"], ["updated_at", "2016-06-12 12:31:32.980413"]]
(4.1ms) COMMIT
(0.1ms) BEGIN
SQL (0.6ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 146], ["campaign_name", "Empiricus - Adlead - Inativos"], ["subject", "{PRENOM} Os melhores investimentos de 2016 !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//Dth XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/Dth/xhtml1-transitional.dth\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<title>Empiricus</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n<style type=\"text/css\">\nbody{background:#f8f8f8 !important; min-height:1000px !important;} \n.ExternalClass {width:100% !important;}\nspan, strong{-webkit-text-size-adjust:none !important;}\n@media only screen and (max-width:480px){\ntable[class=empiricus] { width: 300px !important; min-width:300px !important;}\ntable[class=empiricus] td{ width: 300px !important; min-width:300px !important; float:left !important;}\ntable[class=empiricus] th{ width: 300px !important; min-width:300px !important; float:left !important;}\nbr[class=delete] {display:none !important;}\ntd[class=delete] {display:none !important;}\nth[class=delete] {display:none !important;}\ntd[class=logo-empiricus] img{ width: 300px !important; height: 55px !important; float:left !important;}\ntd[class=mea-empiricus] img{ width: 300px !important; height: 110px !important; float:left !important;}\nth[class=texte-empiricus] { width: 300px !important; float:left !important; padding-top:15px !important; text-align:center !important;}\nth[class=btn-empiricus] { text-align:center !important; background:#b40232 !important;}\nth[class=btn-empiricus] img{ display:inline !important;}\ntd[class=bottom-empiricus] img{ width: 300px !important; height: 10px !important; float:left !important;}\n}\n</style>\n</head>\n<body bgcolor=\"#f8f8f8\" style=\" background:#f8f8f8;\">\n<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n<center>\n<table class=\"empiricus\" width=\"600\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"min-width:600px;\">\n\t<tr>\n\t\t<td class=\"logo-empiricus\" style=\"min-width:600px;\">\n\t\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}&rdr=http://www.adleadevent.com/empiricus/br/m/minisite2016/14122015/idp=506&email={EMAIL}\">\n\t\t\t\t<img style=\"display:block;\" src=\"http://www.adleadevent.com/br/empiricus/m_minisite2016_14122015/public/emkt/acqui/images/logo.png\" width=\"600\" height=\"111\" border=\"0\" alt=\"empiricus\" /></a></td>\n\t</tr>\n\t<tr>\n\t\t<td class=\"mea-empiricus\" style=\"min-width:600px;\">\n\t\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}&rdr=http://www.adleadevent.com/empiricus/br/m/minisite2016/14122015/idp=506&email={EMAIL}\">\n\t\t\t\t<img style=\"display:block;\" src=\"http://www.adleadevent.com/br/empiricus/m_minisite2016_14122015/public/emkt/acqui/images/mea1.jpg\" width=\"600\" height=\"220\" border=\"0\" alt=\"empiricus research\" /></a></td>\n\t</tr>\n\t<tr>\n\t\t<td class=\"mea-empiricus\" style=\"min-width:600px;\">\n\t\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}&rdr=http://www.adleadevent.com/empiricus/br/m/minisite2016/14122015/idp=506&email={EMAIL}\">\n\t\t\t\t<img style=\"display:block;\" src=\"http://www.adleadevent.com/br/empiricus/m_minisite2016_14122015/public/emkt/acqui/images/mea2.png\" width=\"600\" height=\"220\" border=\"0\" alt=\"empiricus research\" /></a></td>\n\t</tr>\n\t<tr>\n <td>\n <table class=\"empiricus\" width=\"600\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"min-width:600px; background:#b40232;\">\n <tr>\n\t\t<th class=\"texte-empiricus\" width=\"333\" style=\"background:#b40232; text-align:center; font-weight:normal;\">\n <span style=\"font-family:Arial, sans-serif; font-size:17px; color:#FFFFFF;\">\n Receba nosso conte&uacute;do <br />\n\t\t<strong><span style=\"text-transform:uppercase;\">gratuito</span></strong> e saiba mais!</span></th>\n\t\t<th class=\"btn-empiricus\" style=\"min-width:244x;\">\n\t\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}&rdr=http://www.adleadevent.com/empiricus/br/m/minisite2016/14122015/idp=506&email={EMAIL}\">\n\t\t\t\t<img style=\"display:block;\" src=\"http://www.adleadevent.com/br/empiricus/m_minisite2016_14122015/public/emkt/acqui/images/btn.gif\" width=\"244\" height=\"108\" border=\"0\" alt=\"eu quero\" /></a></th>\n\t\t<th class=\"delete\" style=\"min-width:23px;\">\n\t\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}&rdr=http://www.adleadevent.com/empiricus/br/m/minisite2016/14122015/idp=506&email={EMAIL}\">\n\t\t\t\t<img style=\"display:block;\" src=\"http://www.adleadevent.com/br/empiricus/m_minisite2016_14122015/public/emkt/acqui/images/left-btn.png\" width=\"23\" height=\"108\" border=\"0\" alt=\"empiricus\" /></a></th>\n </tr>\n </table>\n </td>\n\t</tr>\n\t<tr>\n\t\t<td class=\"bottom-empiricus\" style=\"min-width:600px;\">\n\t\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}&rdr=http://www.adleadevent.com/empiricus/br/m/minisite2016/14122015/idp=506&email={EMAIL}\">\n\t\t\t\t<img style=\"display:block;\" src=\"http://www.adleadevent.com/br/empiricus/m_minisite2016_14122015/public/emkt/acqui/images/bottom.jpg\" width=\"600\" height=\"21\" border=\"0\" alt=\"empiricus research\" /></a></td>\n\t</tr>\n</table>\n</center>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<img src=\"http://tru.webelapp.com/adtckom.php?idc=60507&idctr=6&idp=506&idm=1888&email={EMAIL}\" />\n<img src=\"http://notify.webelapp.com/adtckrtg.php?ids=506&email={EMAIL}\"/>\n</body>\n</html>"], ["entered", "2016-04-28"], ["modified", "2016-05-15"], ["status", "Sent"], ["sent", 5506], ["remaining", 0], ["listid", "[96, 95]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-15"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[96, 95]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "finance"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Saia da CRISE - A Boa Do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 5479], ["unique_views", 95], ["viewed", 110], ["clicked", 10], ["clicker", 9], ["hard_bounce", 0], ["soft_bounce", 27], ["unsub", 3], ["mirror_click", 4], ["complaints", 2], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"bol.com.br\":{\"sent\":401,\"delivered\":401,\"viewed\":10,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":8,\"unique_clicks\":0,\"soft_bounces\":0},\"gmail.com\":{\"sent\":2500,\"delivered\":2500,\"viewed\":16,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":13,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":1100,\"delivered\":1100,\"viewed\":21,\"clicked\":5,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":21,\"unique_clicks\":4,\"soft_bounces\":0},\"outlook.com\":{\"sent\":122,\"delivered\":122,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":54,\"delivered\":54,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":74,\"delivered\":74,\"viewed\":5,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":25,\"delivered\":25,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com.br\":{\"sent\":780,\"delivered\":780,\"viewed\":49,\"clicked\":4,\"hard_bounce\":0,\"unsub\":1,\"complaints\":2,\"unique_views\":42,\"unique_clicks\":4,\"soft_bounces\":0},\"msn.com\":{\"sent\":16,\"delivered\":16,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":8,\"delivered\":8,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":171,\"delivered\":171,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":18,\"delivered\":18,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"terra.com.br\":{\"sent\":15,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":11},\"globomail.com\":{\"sent\":19,\"delivered\":19,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":17,\"delivered\":17,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":21,\"delivered\":21,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"prefeitura.sp.gov.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":6,\"delivered\":6,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"sercomtel.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"gmail.con\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"gmai.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"mail.com\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"gmail.com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"ibest.com.br\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"ufpr.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:32.993669"], ["id", 126]]
(4.2ms) COMMIT
Shoot Load (0.2ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "145"]]
(0.1ms) BEGIN
SQL (0.1ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "145"], ["created_at", "2016-06-12 12:31:33.015301"], ["updated_at", "2016-06-12 12:31:33.015301"]]
(4.0ms) COMMIT
(0.1ms) BEGIN
SQL (1.4ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 145], ["campaign_name", "Congalotto - Adlead - Inativos"], ["subject", "{PRENOM} Aproveite seu prêmio !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\" />\n<title>Congalotto</title>\n\n<style type=\"text/css\">\n\t*{\n\t\tfont-family:Arial, Helvetica, sans-serif;\n\t\t}\n</style>\n</head>\n\n<body>\n<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n\t<table width=\"600\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n <!--Comienza header-->\n \t<tr>\n \t<td>\n \n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/header.jpg\" style=\"display:block;\" width=\"600\" height=\"85\"/>\n \n </td>\n </tr>\n <!--termina header--> \n \n<!--comienza contenido-->\n \t\t<tr>\n \t<td>\n \t<table width=\"600\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n \t<tr>\n \t<td width=\"20\" style=\"line-height:0px;\">\n </td>\n \n <td>\n \t<table width=\"560\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n \t<tr>\n \t<td>\n \t<table width=\"560\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n <!--Comienza voucher-->\n \t<tr>\n \t<td colspan=\"3\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/voucher-top.jpg\" style=\"display:block;text-align:center;color:white;background-color:#027054;font-size:24px;line-height:30px;\" width=\"560\" height=\"74\" alt=\"ELEGIBILIDADE CONFIRMADA\"/>\n </td>\n </tr>\n <!--comienza linea contenido voucher-->\n \n <tr>\n \t\t<td>\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\" width=\"560\" height=\"27\">\n \t<tr>\n \t<td rowspan=\"5\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/voucher-left.jpg\" width=\"132\" height=\"147\" style=\"display:block;\"/>\n </td>\n <!--Contenido editable voucher--> \n <td width=\"380\" height=\"123\" style=\"border:2px solid #027054;\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n \n \t<tr>\n \t<td width=\"376\" style=\"text-align:center;font-family:Arial, Helvetica, sans-serif;font-size:13px;line-height:15px;\">\n Voc&ecirc; foi selecionado para come&ccedil;ar o ano<br /> participando por \n </td>\n </tr>\n <tr>\n \t<td width=\"376\" height=\"10\" style=\"line-height:0px;\">\n </td>\n </tr>\n <tr>\n \t<td width=\"376\" style=\"text-align:center;font-family:Arial, Helvetica, sans-serif;font-size:35px;line-height:38px;color:#ff0202;font-weight:bold;\">\n US$1,58 bilh&otilde;es\n </td>\n </tr>\n <tr>\n \t<td width=\"376\" height=\"10\" style=\"line-height:0px;\">\n </td>\n </tr>\n <tr>\n \t<td width=\"376\" style=\"text-align:center;font-family:Arial, Helvetica, sans-serif;font-size:13px;line-height:16px;\">\n <span style=\"background-color:yellow;\">Ative seu bilhete de Powerball dentro das pr&oacute;ximas 6 horas\n</span>\n\n </td>\n </tr>\n \n </table> \n </td>\n <!--temrina contenido editable voucher--> \n <td rowspan=\"5\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/voucher-right.jpg\" width=\"48\" height=\"147\" style=\"display:block;\"/>\n </td>\n </tr>\n \n </table>\n </td>\n </tr>\n \n <!--Termina linea contenido voucher--> \n <tr>\n \t<td colspan=\"3\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/voucher-bottom.jpg\" style=\"display:block;text-align:center;color:#ff0202;background-color:#FFFFFF;font-size:24px;line-height:30px;\" width=\"560\" height=\"60\" alt=\"Jogue GRÃ\u0081TIS na maior loteria do mundo\"/>\n </td>\n </tr>\n <!--Termina voucher--> \n \n </table>\n </td>\n </tr>\n \t\t<!--Comienza texto 1--> \n <tr>\n \t<td colspan=\"3\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n \n \t<tr>\n \t<td colspan=\"3\" width=\"560\" height=\"20\" style=\"line-height:0px;\">\n \t\n </td>\n </tr>\n \n <tr>\n \t<td width=\"20\" style=\"line-height:0px;\">\n </td>\n \n <td width=\"520\" style=\"font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;text-align:left;ss\">\n \tFoi concedida a voc&ecirc; a habilita&ccedil;&atilde;o oficial para jogar <strong>GR&Aacute;TIS</strong> no pr&oacute;ximo sorteio de Powerball, com a oportunidade de ganhar milh&otilde;es.\n\n\n </td>\n \n <td width=\"20\" style=\"line-height:0px;\">\n </td>\n </tr>\n \n \n <tr>\n \t<td colspan=\"3\" width=\"560\" height=\"20\" style=\"line-height:0px;\">\n \t\n </td>\n </tr>\n </table>\n </td>\n </tr> \n <!--Termina texto 1--> \n \n <!--Comienza segundo cuadro azul--> \n \n <tr>\n \t<td colspan=\"3\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" align=\"center\">\n \t<tr>\n \t\t<td colspan=\"2\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/cuadro2-top.jpg\" style=\"display:block;\" width=\"560\" height=\"20\"/>\n </td>\n \t</tr>\n \n <tr>\n \t<td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tr>\n \t<td width=\"210\" height=\"50\" bgcolor=\"#0e9b80\" style=\"font-family:Arial, Helvetica, sans-serif;text-align:center;font-size:20px;line-height:22px;color:white;font-weight:light;border-left:2px solid #027054;\">\n \tQual destes prazeres<br/>voc&ecirc; desfrutar&aacute;<br /> <span style=\"color:#c4dfff;font-weight:bold;\">quando for<br /> milion&aacute;rio?</span>\n </td>\n <!--Comienza cta 1-->\n <td width=\"348\" bgcolor=\"#FFFFFF\" height=\"103\" style=\"border-right:2px solid #027054;\">\n <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \n \n \t<tr>\n \t<td colspan=\"3\" width=\"348\" height=\"10\" style=\"line-height:0px;\">\n </td>\n </tr>\n \n \t<tr>\n \t\n <td colspan=\"3\">\n <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/cta1.jpg\" width=\"347\" height=\"85\" style=\"display:block;background-color:#fd8b1f;color:#FFFFFF;text-align:center;font-size:18px;line-height:40px;\" alt=\"MUDE SUA VIDA AGORA SOLICITE SEU BILHETE GRÃ\u0081TIS\"/>\n </a>\n </td>\n \n </tr>\n \t\n <tr>\n \t<td colspan=\"3\" width=\"348\" height=\"20\" style=\"line-height:0px;\">\n </td>\n </tr>\n </table> \n \n \n </td>\n <!--Termina cta1-->\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n \t<td>\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \n <tr>\n \t<td>\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \t<tr>\n \t<td width=\"210\" height=\"545\" style=\"border-left:2px solid #027054;background-color:#ffffff;\">\n \n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \t<tr>\n \t<td>\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/flecha.jpg\" style=\"display:block;\" width=\"208\" height=\"55\"/>\n </td>\n </tr>\n \n <tr>\n \t<td><a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/icono1.jpg\" style=\"display:block; text-align:center;font-size:18px;line-height:21px;color:#027054;\" width=\"208\" height=\"130\" alt=\"Mansão de Luxo\"/>\n </a>\n </td>\n </tr>\n \n <tr>\n \t<td>\n <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/icono2.jpg\" style=\"display:block; text-align:center;font-size:18px;line-height:21px;color:#027054;\" width=\"208\" height=\"130\" alt=\"Super Carro\"/>\n </a>\n </td>\n </tr>\n \n <tr>\n \t<td>\n <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/icono3.jpg\" style=\"display:block; text-align:center;font-size:18px;line-height:21px;color:#027054;\" width=\"208\" height=\"130\" alt=\"Iate\"/>\n </a>\n </td>\n </tr>\n \n <tr>\n \t<td>\n <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/icono4.jpg\" style=\"display:block; text-align:center;font-size:18px;line-height:21px;color:#027054;\" width=\"208\" height=\"133\" alt=\"Diamantes\"/>\n </a>\n </td>\n </tr>\n \n \n \n </table>\n \t\n </td>\n \n \n \n </tr>\n </table>\n </td>\n \n <td rowspan=\"5\" style=\"border-right:2px solid #027053;\" width=\"340\">\n <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"346\">\n <tr>\n \n \t<td width=\"20\">\n \t</td>\n \n \n \t<td width=\"306\" style=\"font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;text-align:left;\">\n \t\n\nCongalotto lhe oferece a oportunidade de come&ccedil;ar o ano mudando sua vida completamente. N&oacute;s j&aacute; entregamos mais de <strong>US$100 milh&otilde;es</strong> em pr&ecirc;mios em todo o mundo, criando mais de 20 novos milion&aacute;rios.\n<br /><br />\nVOC&Ecirc; pode ser o primeiro grande milion&aacute;rio deste 2016, porque j&aacute; foi selecionado aleatoriamente para jogar GR&Aacute;TIS em Powerball esta semana, por um pr&ecirc;mio de <span style=\"color:#0f9b80;font-weight:bold;\">US$1,58 bilh&otilde;es.</span>\n<br /><br />\nVoc&ecirc; s&oacute; precisa confirmar a sua participa&ccedil;&atilde;o de acordo com as regras do jogo.<br />\n <br /><a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">Clique aqui para jogar agora!\n </a><br /><br />\n\n<span style=\"color:#027054;font-weight:bold;font-size:15px;\">ESTE &Eacute; O SEU ANO: MUDE SUA VIDA COM UM PR&Ecirc;MIO INCR&Iacute;VEL\n</span> <br /><br />\n\nVoc&ecirc; tem 6 horas para confirmar a sua participa&ccedil;&atilde;o no pr&oacute;ximo sorteio. &Eacute; gr&aacute;tis, basta seguir as instru&ccedil;&otilde;es e preparare-se para ganhar.<br /><br />\n\n\n\nBoa sorte!\n\n\n\n\n \t</td>\n \n \n \n \t<td width=\"20\">\n \t</td>\n </tr>\n <tr>\n \t<td colspan=\"3\" height=\"15\" style=\"line-height:0px;\">\n \t\n </td>\n </tr>\n <tr>\n \t<td colspan=\"3\" style=\"text-align:center;font-size:24px;line-height:26px;color:#027054;font-weight:bold;\">\n \tN&Atilde;O ESPERE MAIS!\n </td>\n </tr>\n \n <tr>\n \t<td colspan=\"3\" height=\"15\" style=\"line-height:0px;\">\n \t\n </td>\n </tr>\n \n <tr>\n \t<td colspan=\"3\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \t<tr>\n \t<td width=\"20\">\n </td>\n \t<td width=\"203\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \t<tr>\n \t<td align=\"left\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/firma.jpg\" style=\"display:block;\"/>\n </td>\n </tr>\n <tr>\n \t<td width=\"200\" style=\"font-family:Arial, Helvetica, sans-serif;font-size:14px;line-height:16px;text-align:left;\">\n \tBridget Hall\n<br />Diretora de Contas\n\n </td>\n </tr>\n </table>\n </td>\n \n <td width=\"102\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/sello.jpg\" style=\"display:block;background-color:#f1e59d;text-align:center;font-size:16px;line-height:19px;\" alt=\"CREIANDO MILIONÃ\u0081RIOS DESDE 2007\"/>\n </td>\n <td width=\"20\">\n </td>\n </tr>\n </table>\n </td>\n </tr>\n \n <tr>\n \t<td colspan=\"3\" height=\"20\" style=\"line-height:0px;\">\n </td>\n </tr>\n \n \n </table>\n </td>\n \n </tr>\n \n <tr>\n \t<td colspan=\"2\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n <tr>\n <td>\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/cuadro2-bottom.jpg\" style=\"display:block;\" width=\"560\" height=\"16\"/>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n </table>\n </td>\n </tr>\n <!--Termina segundo cuadro azul--> \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n </table>\n </td>\n \n <td width=\"20\" style=\"line-height:0px;\">\n </td>\n </tr>\n <tr>\n \t<td colspan=\"3\" height=\"20\">\n </td>\n </tr> \n <tr>\n \t<td colspan=\"3\">\n \t<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n \t<tr>\n \t<td width=\"122\">\n \t\n </td>\n \n <td width=\"355\">\n <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=http://pt.congalotto.com/landings/freeplay-power.php?lang=pt&f=1&account=0e1c6fc1&track=ft_pt_1&cpa=yes\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/cta2.jpg\" style=\"display:block;text-align:center;color:#FFFFFF;background-color:#fa7d20;font-size:20px;line-height:35px;\" alt=\"PARTICIPAR AGORA\"/>\n </a>\n </td>\n \n <td width=\"122\">\n \t\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n \t<td colspan=\"3\" height=\"20\">\n </td>\n </tr> \n \n <!--logos-->\n <tr>\n \t<td colspan=\"3\">\n \t<img src=\"http://www.congalotto.com/mailing/cgl/partners/adlead/20160122/pt/images/logos.jpg\" style=\"display:block;\" width=\"600\" height=\"101\"/>\n </td>\n </tr> \n \n <!--logos-->\n \n <tr>\n \t<td colspan=\"3\" height=\"20\">\n </td>\n </tr>\n \n <!--footer-->\n \n <tr>\n <td colspan=\"3\">\n <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"border-top:2px solid #F3F3F4;\" align=\"center\">\n <tr>\n\t\t \t<td height=\"10\" style=\"font-size:1px; line-height:1px; border:none;\" width=\"600\">&nbsp;</td>\n </tr>\n <tr>\n \t<td align=\"center\" valign=\"top\" style=\"border:none;\">\n \t<p style=\"font-family: Arial, Helvetica, sans-serif; font-size:10px; color:#666666; padding:0; margin:0; line-height:15px; text-align:center;\">&copy; Copyright 2015 Congalotto.com. Todos os direitos reservados. Se voc&ecirc; n&atilde;o visualizar corretamente este e-mail, <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}&rdr=#SPCLICKTOVIEW\" name=\"viewonline_1\" target=\"_blank\" id=\"viewonline_1\" style=\"color:#0183c6; text-decoration:none;\" xt=\"SPCLICKTOVIEW\">clique aqui</a>.</p>\n <p style=\"font-family: Arial, Helvetica, sans-serif; font-size:10px; color:#666666; padding:0; margin:10px 0 0 0; line-height:15px; text-align:center;\">Congalotto.com &eacute; operado por: Ledonford Ltd. 3 Athinodorou Street, 2025 Dasoupoli, Strovolos, Nicosia, Cyprus.</p>\n </td>\n </tr>\n <tr>\n \t<td height=\"5\" style=\"font-size:1px; line-height:1px; border:none;\">&nbsp;</td>\n </tr>\n </table>\n </td>\n </tr>\n \n <!--footer-->\n \n \n \n \n \n \n \n \n \n \n \n </table>\n </td>\n </tr>\n \n<!--Termina contenido--> \n \n \n \n \n \n \n \n \n \n \n \n \n </table>\n \n \n \n \n \n \n \n \n \n \n <!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n \n \n \n \n \n \n <img src=\"http://tru.webelapp.com/adtckom.php?idc=60539&idctr=6&idp=506&idm=2053&email={EMAIL}\" />\n<img src=\"http://notify.webelapp.com/adtckrtg.php?ids=506&email={EMAIL}\"/>\n \n \n \n</body>\n</html>\n"], ["entered", "2016-04-28"], ["modified", "2016-05-06"], ["status", "Sent"], ["sent", 4478], ["remaining", 0], ["listid", "[90, 91]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-06"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[90, 91]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "congalotto inativos lotto"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Congalotto - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 4079], ["unique_views", 262], ["viewed", 358], ["clicked", 38], ["clicker", 28], ["hard_bounce", 0], ["soft_bounce", 399], ["unsub", 18], ["mirror_click", 8], ["complaints", 1], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":2971,\"delivered\":2971,\"viewed\":301,\"clicked\":24,\"hard_bounce\":0,\"unsub\":15,\"complaints\":0,\"unique_views\":210,\"unique_clicks\":17,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":359,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":359},\"outlook.com\":{\"sent\":13,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":13},\"itelefonica.com.br\":{\"sent\":2,\"delivered\":1,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":1},\"yahoo.com.br\":{\"sent\":648,\"delivered\":648,\"viewed\":39,\"clicked\":8,\"hard_bounce\":0,\"unsub\":1,\"complaints\":1,\"unique_views\":37,\"unique_clicks\":6,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":26,\"delivered\":26,\"viewed\":1,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":1,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":5,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":5},\"bol.com.br\":{\"sent\":144,\"delivered\":144,\"viewed\":4,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":5,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":5},\"live.com\":{\"sent\":10,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":10},\"uol.com.br\":{\"sent\":45,\"delivered\":45,\"viewed\":2,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":35,\"delivered\":35,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":32,\"delivered\":32,\"viewed\":3,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":1,\"soft_bounces\":0},\"globo.com\":{\"sent\":8,\"delivered\":8,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"globomail.com\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"magazineluiza.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"superig.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":12,\"delivered\":12,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"mail.com\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.028132"], ["id", 127]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "144"]]
(0.1ms) BEGIN
SQL (0.1ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "144"], ["created_at", "2016-06-12 12:31:33.050016"], ["updated_at", "2016-06-12 12:31:33.050016"]]
(4.0ms) COMMIT
(0.1ms) BEGIN
SQL (0.9ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 144], ["campaign_name", "Trillonario - Adlead - Inativos"], ["subject", "{PRENOM} Aproveite seu prêmio !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n<body text=\"#666666\" link=\"#0183c6\" vlink=\"#0183c6\" alink=\"#0183c6\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n <tr>\n <td align=\"center\">\n\n<table width=\"600\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n\n<!-- START HEADER -->\n\t<tr>\n\t\t<td width=\"600\" height=\"15\"></td>\n\t</tr>\n\n\t<tr><td>\n\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60410&idctr=6&idp=506&idm=2305&email={EMAIL}&rdr=http://pt.trillonario.com/landings/freeplay-mega.php?account=1ab0a8ac&track=ft_mm_pt_2&cpa=yes\" name=\"header\">\n\t\t<img src=\"http://www.trillonario.com/mailing/images/header_logo_pt.jpg\" alt=\"Trillonario.com\" width=\"600\" height=\"60\" border=\"0\" style=\"display:block; border:none\" />\n\t\t</a>\n\t</td></tr>\n\n<tr><td height=\"10\"></td></tr>\n\n<tr><td>\n\t\t<a href=\"http://tru.webelapp.com/adtckcm.php?idc=60410&idctr=6&idp=506&idm=2305&email={EMAIL}&rdr=http://pt.trillonario.com/landings/freeplay-mega.php?account=1ab0a8ac&track=ft_mm_pt_2&cpa=yes\" name=\"title\">\n\t\t<img src=\"http://www.trillonario.com/mailing/partners/adlead/megamillions/freeticket-solo-imagen/version-3/pt/images/img.jpg\" alt=\"A loteria que pode premi&Atilde;&iexcl;-lo com at&Atilde;&copy; US6 milh&Atilde;&micro;es\nest&Atilde;&iexcl; agora ao seu alcance\n\n1 bilhete oficial gr&Atilde;&iexcl;tis\" width=\"600\" style=\"display:block; text-align:center; font-family:Arial, Helvetica, sans-serif; font-size:60px; color:#E8FB00; background-color:#999F9D; border:none\"/>\n\t\t</a>\n </td></tr>\n \n\n <tr>\n <td height=\"10\"></td>\n </tr>\n <tr>\n \t<td>\n \t<table cellpadding=\"0\" cellspacing=\"0\" width=\"600\" border=\"0\">\n \t<tr>\n \t<td width=\"20\">\n </td>\n <td width=\"560\" style=\"font-size:14px; color:#555555; font-family:Arial, Helvetica, sans-serif;\">A loteria que pode premi&aacute;-lo com at&eacute; \n<strong>US$656 milh&otilde;es</strong>\nest&aacute; agora ao seu alcance,\n\n<strong>1 bilhete oficial gr&aacute;tis</strong>. <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60410&idctr=6&idp=506&idm=2305&email={EMAIL}&rdr=http://pt.trillonario.com/landings/freeplay-mega.php?account=1ab0a8ac&track=ft_mm_pt_2&cpa=yes\" name=\"txt\">Jogue Agora</a>.</td>\n <td width=\"20\">\n </td>\n </tr>\n </table>\n </td>\n \n </tr>\n\n\n\n\n\n\n\n \n</table>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<img src=\"http://tru.webelapp.com/adtckom.php?idc=60410&idctr=6&idp=506&idm=2305&email={EMAIL}\" />\n<img src=\"http://notify.webelapp.com/adtckrtg.php?ids=506&email={EMAIL}\"/>\n</body>\n</html>"], ["entered", "2016-04-28"], ["modified", "2016-05-04"], ["status", "Sent"], ["sent", 12073], ["remaining", 0], ["listid", "[87, 90, 91]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-04"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[87, 90, 91]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "trillonario inativos lotto all"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 12054], ["unique_views", 171], ["viewed", 198], ["clicked", 25], ["clicker", 24], ["hard_bounce", 3], ["soft_bounce", 17], ["unsub", 18], ["mirror_click", 13], ["complaints", 2], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"hotmail.com\":{\"sent\":697,\"delivered\":697,\"viewed\":15,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":14,\"unique_clicks\":2,\"soft_bounces\":0},\"gmail.com\":{\"sent\":8361,\"delivered\":8360,\"viewed\":54,\"clicked\":13,\"hard_bounce\":0,\"unsub\":7,\"complaints\":0,\"unique_views\":51,\"unique_clicks\":12,\"soft_bounces\":1},\"yahoo.com.br\":{\"sent\":1661,\"delivered\":1661,\"viewed\":88,\"clicked\":2,\"hard_bounce\":0,\"unsub\":7,\"complaints\":1,\"unique_views\":72,\"unique_clicks\":2,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":406,\"delivered\":406,\"viewed\":15,\"clicked\":4,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":12,\"unique_clicks\":4,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":66,\"delivered\":64,\"viewed\":0,\"clicked\":0,\"hard_bounce\":2,\"unsub\":1,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":158,\"delivered\":158,\"viewed\":7,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":82,\"delivered\":82,\"viewed\":5,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":2,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":12,\"delivered\":12,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":23,\"delivered\":23,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":1,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":86,\"delivered\":86,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":29,\"delivered\":29,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":24,\"delivered\":24,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":11,\"delivered\":11,\"viewed\":1,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":16,\"delivered\":15,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"superig.com.br\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":5,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"magazineluiza.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":4,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":4},\"ibest.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.063652"], ["id", 128]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "143"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "143"], ["created_at", "2016-06-12 12:31:33.083802"], ["updated_at", "2016-06-12 12:31:33.083802"]]
(4.1ms) COMMIT
(0.2ms) BEGIN
SQL (0.8ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 143], ["campaign_name", "Criando Riqueza - Adlead - Inativos"], ["subject", "{PRENOM} Saiba escolher um bom investimento !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <head>\n <title>Criando Riqueza</title>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n <style type=\"text/css\">\n\n body{background:#FFFFFF !important; min-height:1000px !important;} \n .ExternalClass {width:100% !important;}\n span, strong{-webkit-text-size-adjust:none !important;}\n\n @media only screen and (max-width:480px){\n table[class=criando] { width: 300px !important; min-width:300px !important; text-align:center !important;}\n table[class=criando] td{ width: 300px !important; min-width:300px !important; float:left !important;}\n table[class=criando] th{ width: 300px !important; min-width:300px !important; float:left !important;}\n br[class=delete] {display:none !important;}\n td[class=delete] {display:none !important;}\n th[class=delete] {display:none !important;}\n td[class=logo-criando] img{ width: 300px !important; height: 49px !important; float:left !important;}\n td[class=visuel-criando] img{ width: 300px !important; height: 82px !important; float:left !important;}\n th[class=mec-criando] { width: 300px !important; height: 159px !important; float:left !important; background:#EAEAEA !important;}\n th[class=mec-criando] img{ width: 210px !important; height: 159px !important; display:inline !important;}\n th[class=texte-criando] { width: 300px !important; height: 100px !important; float:left !important; padding-top:15px !important; text-align:center !important;}\n th[class=texte-criando] span{ font-size:15px !important;}\n td[class=btn-criando] img{ width: 300px !important; height: 40px !important; float:left !important;}\n }\n </style>\n </head>\n <body bgcolor=\"#FFFFFF\">\n <!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <table width=\"600\" style=\"min-width:600px;\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"criando\">\n <tr>\n <td style=\"min-width:600px;\" class=\"logo-criando\"><a href=\"http://tru.webelapp.com/adtckcm.php?idc=60561&idctr=6&idp=506&idm=2285&email={EMAIL}&rdr=http://www.adleadbrazil.com/criandoriqueza/br/m/tesouro/30032016/idp=506&email={EMAIL}\">\n <img src=\"http://www.adleadbrazil.com/br/criandoriqueza/m_tesouro_30032016/public/emkt/acqui/images/top.jpg\" width=\"600\" height=\"98\" border=\"0\" style=\"display:block;\" alt=\"Criando riqueza\" /></a></td>\n </tr>\n <tr>\n <td style=\"min-width:600px;\" class=\"visuel-criando\"><a href=\"http://tru.webelapp.com/adtckcm.php?idc=60561&idctr=6&idp=506&idm=2285&email={EMAIL}&rdr=http://www.adleadbrazil.com/criandoriqueza/br/m/tesouro/30032016/idp=506&email={EMAIL}\">\n <img src=\"http://www.adleadbrazil.com/br/criandoriqueza/m_tesouro_30032016/public/emkt/acqui/images/mea.jpg\" width=\"600\" height=\"235\" border=\"0\" style=\"display:block;\" alt=\"Fuja das armadilhas vendidas pelos bancos\" /></a></td>\n </tr>\n </table>\n <table width=\"600\" style=\"min-width:600px;\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"criando\">\n <tr>\n <th style=\"min-width:210px;\" class=\"mec-criando\">\n <a href=\"http://tru.webelapp.com/adtckcm.php?idc=60561&idctr=6&idp=506&idm=2285&email=[email]&rdr=http://www.adleadbrazil.com/criandoriqueza/br/m/tesouro/30032016/idp=50&email={EMAIL}\"><img src=\"http://www.adleadbrazil.com/br/criandoriqueza/m_tesouro_30032016/public/emkt/acqui/images/left.jpg\" width=\"208\" height=\"110\" border=\"0\" style=\"display:block;\" alt=\"Criando riqueza\" /></a></th>\n <th width=\"390\" height=\"110\" style=\"background:#EAEAEA; font-weight:normal; text-align:left;\" class=\"texte-criando\">\n <span style=\"font-family:Arial, Helvetica, Tahoma; color:#000000; font-size:18px;\">\n Quer investir mas n&atilde;o sabe se escolhe<br/><strong>IPCA+, Prefixado, Selic ou Prefixado <br/>\n com Juros Semestrais?</strong> \n </span>\n </th>\n </tr>\n </table>\n <table width=\"600\" style=\"min-width:600px;\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"criando\">\n <tr>\n <td width=\"600\" style=\"text-align:center; padding-bottom:30px; padding-top:30px; background:#313131;\">\n <span style=\"font-family:Arial, Helvetica, Tahoma; color:#ffffff; font-size:15px;\">\n <strong style=\"text-transform:uppercase;\">A resposta est&aacute; aqui.</strong><br/>\n Acesse nosso relat&oacute;rio gratuito e descubra qual t&iacute;tulo &eacute; ideal <br/>\n para fazer um bom investimento. N&atilde;o perca tempo! <br/>\n Comece agora a criar riqueza. \n </span>\n </td>\n </tr>\n <tr>\n <td style=\"min-width:446px; text-align:center; background:#313131\" class=\"btn-criando\"><a href=\"http://tru.webelapp.com/adtckcm.php?idc=60561&idctr=6&idp=506&idm=2285&email={EMAIL}&rdr=http://www.adleadbrazil.com/criandoriqueza/br/m/tesouro/30032016/idp=506&email={EMAIL}\">\n <img src=\"http://www.adleadbrazil.com/br/criandoriqueza/m_tesouro_30032016/public/emkt/acqui/images/btn.gif\" width=\"446\" height=\"54\" border=\"0\" style=\"display:inline;\" alt=\"confira*\" /></a></td>\n </tr>\n <tr>\n <td width=\"600\" style=\"text-align:center; padding-bottom:30px; padding-top:30px; background:#313131;\">\n <span style=\"font-family:Arial, Helvetica, Tahoma; color:#727272; font-size:11px;\">\n *Eu aceito receber newsletters da Criando Riqueza em meu {EMAIL},\n <br class=\"delete\" />clicando no bot&atilde;o CONFIRA ou neste link.\n </span>\n </td>\n </tr>\n </table>\n </center>\n\t<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<img src=\"http://tru.webelapp.com/adtckom.php?idc=60561&idctr=6&idp=506&idm=2285&email={EMAIL}\" />\n<img src=\"http://notify.webelapp.com/adtckrtg.php?ids=506&email={EMAIL}\"/>\n </body>\n</html>"], ["entered", "2016-04-28"], ["modified", "2016-05-05"], ["status", "Sent"], ["sent", 4634], ["remaining", 0], ["listid", "[90, 91]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-05"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[90, 91]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "Criandoriqueza inativos adlead ALL"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Criando Riqueza - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 4616], ["unique_views", 65], ["viewed", 73], ["clicked", 5], ["clicker", 5], ["hard_bounce", 0], ["soft_bounce", 17], ["unsub", 4], ["mirror_click", 5], ["complaints", 0], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"gmail.com\":{\"sent\":2807,\"delivered\":2807,\"viewed\":13,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":13,\"unique_clicks\":1,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":521,\"delivered\":517,\"viewed\":5,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":1,\"soft_bounces\":4},\"yahoo.com.br\":{\"sent\":754,\"delivered\":754,\"viewed\":36,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":34,\"unique_clicks\":2,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":148,\"delivered\":148,\"viewed\":7,\"clicked\":1,\"hard_bounce\":0,\"unsub\":2,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":11,\"delivered\":10,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":1},\"ig.com.br\":{\"sent\":34,\"delivered\":34,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":43,\"delivered\":43,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":42,\"delivered\":42,\"viewed\":6,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":18,\"delivered\":18,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":37,\"delivered\":37,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":12,\"delivered\":12,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":11,\"delivered\":11,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"prefeitura.sp.gov.br\":{\"sent\":1,\"delivered\":1,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"magazineluiza.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":7,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"itelefonica.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"mail.com\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"icloud.com\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"msn.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"aol.com\":{\"sent\":1,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"ibest.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.096357"], ["id", 129]]
(4.2ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "142"]]
(0.1ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "142"], ["created_at", "2016-06-12 12:31:33.114923"], ["updated_at", "2016-06-12 12:31:33.114923"]]
(4.0ms) COMMIT
(0.1ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 142], ["campaign_name", "WM - Relance - 2 Campagnes"], ["subject", "{PRENOM} Pegue seus PRESENTES !"], ["bat_sent", "no"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n<style type=\"text/css\">\nimg {\n\tbackground-position: center;\n\tmargin: auto;\n\tdisplay: block;\n}\n</style>\n</head>\n<body bgcolor=\"#ffffff\">\n<!-- Header Begins -->\n<center><div>\n<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></div></center>\n\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <div>\n\t<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">{PRENOM}, </p></td>\n </tr>\n\n</table>\n\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n \n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">Agora voc&ecirc; faz parte do <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MAIOR</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MELHOR</strong></font> clube de ofertas da internet:</p></td>\n </tr>\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\"><font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Sorteios</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Amostras Gr&aacute;tis</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Descontos</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>E-books gr&aacute;tis</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>MUITO MAIS</strong></font>...</p></td>\n </tr>\n</table>\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">E pra mostrar que a gente n&atilde;o est&aacute; brincando, aqui est&atilde;o seus primeiros presentes :</p></td>\n </tr>\n</table>\n<br />\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td width=\"320\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block; padding: 3px 5px 3px 5px;\">E-book GRATUITO com TUDO o que voc&ecirc; precisa saber pra GANHAR DINHEIRO na internet:</p></td>\n <td width=\"640\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: center; display: block; padding: 3px 5px 3px 5px; margin:auto;\">Pra aproveitar a Mega-Sena: 6 apostas pelo pre&ccedil;o de 3! Deixe sua SORTE falar mais alto !</p></td></tr>\n <tr>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://actualmanager.com/click.php?aspid=ef65ebe0fed701bd1ba3cd3fac5fa835\">E-book Gratuito !</a></center></td>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://www.r-mkt.com/redirect/to/crovamedia/lottoland/{EMAIL}/keepmedia.go2cloud.org/aff_c?offer_id=5561&aff_id=1227&file_id=3363&url_id=125361\">Aposta EM DOBRO !</a></center></td>\n </tr>\n</table>\n<br />\n<br />\n</div></center>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<!-- Pixel Check List -->\n<img src=\"http://actualmanager.com/print.php?aspid=102566\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" />\n<!-- PixelLottoland -->\n<img src=\"http://tracking.bluesharkmedia.com.br/aff_i?offer_id=5561&aff_id=1227&file_id=3363\" width=\"1\" height=\"1\" />\n<!-- Footer Ends --> </body>"], ["entered", "2016-04-28"], ["modified", "2016-04-28"], ["status", "Sent"], ["sent", 6632], ["remaining", 0], ["listid", "[80, 81, 85, 60]"], ["exclude_list", "[5, 14, 37, 83, 84]"], ["scheduled_date", "2016-04-28"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37, 83, 84], \"$in\"=>[80, 81, 85, 60]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "Welcome Mail Inativos 2Campaigns relance"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 4586], ["unique_views", 168], ["viewed", 213], ["clicked", 34], ["clicker", 32], ["hard_bounce", 35], ["soft_bounce", 2014], ["unsub", 8], ["mirror_click", 13], ["complaints", 1], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"outlook.com\":{\"sent\":97,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":97},\"hotmail.com\":{\"sent\":1787,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1786},\"gmail.com\":{\"sent\":3160,\"delivered\":3159,\"viewed\":20,\"clicked\":12,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":19,\"unique_clicks\":11,\"soft_bounces\":1},\"yahoo.com.br\":{\"sent\":727,\"delivered\":727,\"viewed\":119,\"clicked\":12,\"hard_bounce\":0,\"unsub\":4,\"complaints\":0,\"unique_views\":94,\"unique_clicks\":11,\"soft_bounces\":1},\"bol.com.br\":{\"sent\":293,\"delivered\":293,\"viewed\":35,\"clicked\":5,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":26,\"unique_clicks\":5,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":34,\"delivered\":4,\"viewed\":1,\"clicked\":0,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":30},\"uol.com.br\":{\"sent\":103,\"delivered\":103,\"viewed\":6,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":1,\"soft_bounces\":0},\"ymail.com\":{\"sent\":12,\"delivered\":12,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":1,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":32,\"delivered\":32,\"viewed\":7,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"live.com\":{\"sent\":41,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":41},\"hotmail.com.br\":{\"sent\":18,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":18},\"itelefonica.com.br\":{\"sent\":4,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"globo.com\":{\"sent\":18,\"delivered\":18,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":5,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":5},\"icloud.com\":{\"sent\":6,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":6},\"ibest.com.br\":{\"sent\":4,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"oi.com.br\":{\"sent\":38,\"delivered\":38,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":6,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":49,\"delivered\":20,\"viewed\":2,\"clicked\":0,\"hard_bounce\":29,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":4,\"delivered\":4,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":8,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":8},\"mail.com\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"gmail.com.br\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"brturbo.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":6,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"magazineluiza.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"r7.com\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.127047"], ["id", 130]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "141"]]
(0.2ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "141"], ["created_at", "2016-06-12 12:31:33.147279"], ["updated_at", "2016-06-12 12:31:33.147279"]]
(4.1ms) COMMIT
(0.2ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 141], ["campaign_name", "Souvie - Actual Sales - Actifs"], ["subject", "{PRENOM} Você mais LINDA !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n<title>SOU000216_estudo_email_1_souvie_estrias_v2</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />\n</head>\n<body bgcolor=\"#FFFFFF\">\n<!-- Save for Web Slices (SOU000216_estudo_email_1_souvie_estrias_v2.jpg) -->\n<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n<table id=\"Table_01\" width=\"700\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" align=\"center\" align=\"center\">\n\t<tr>\n\t\t<td>\n\t\t\t<a href=\"http://actualmanager.com/click.php?aspid=d52f7925f428e5802cd9e8908b0c3afb\">\n\t\t\t\t<img id=\"SOU000216_estudo_email_1_souvie_estrias_v2_01\" src=\"http://fessquefez.com.br/email/souvie/20160309_souvie_nova_campanha/email1/images/SOU000216_estudo_email_1_souvie_estrias_v2_01.jpg\" width=\"700\" border=\"0\" alt=\"\" style=\"display: block; border-style: none\" /></a></td>\n\t</tr>\n\t<tr>\n\t\t<td>\n\t\t\t<img id=\"souvie_email1_02\" src=\"http://fessquefez.com.br/email/souvie/20160309_souvie_nova_campanha/email1/images/souvie_email1_02.jpg\" width=\"700\" alt=\"\" style=\"display: block; border-style: none\" /></td>\n\t</tr>\n\t<tr>\n\t\t<td>\n\t\t\t<a href=\"http://actualmanager.com/click.php?aspid=d52f7925f428e5802cd9e8908b0c3afb\">\n\t\t\t\t<img id=\"SOU000216_estudo_email_1_souvie_estrias_v2_03\" src=\"http://fessquefez.com.br/email/souvie/20160309_souvie_nova_campanha/email1/images/SOU000216_estudo_email_1_souvie_estrias_v2_03.jpg\" width=\"700\" border=\"0\" alt=\"\" style=\"display: block; border-style: none\" /></a></td>\n\t</tr>\n\t<tr>\n\t\t<td>\n\t\t\t<a href=\"http://actualmanager.com/click.php?aspid=d52f7925f428e5802cd9e8908b0c3afb\">\n\t\t\t\t<img id=\"SOU000216_estudo_email_1_souvie_estrias_v2_04\" src=\"http://fessquefez.com.br/email/souvie/20160309_souvie_nova_campanha/email1/images/SOU000216_estudo_email_1_souvie_estrias_v2_04.jpg\" width=\"700\" border=\"0\" alt=\"\" style=\"display: block; border-style: none\" /></a></td>\n\t</tr>\n</table>\n<!-- End Save for Web Slices -->\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<img src=\"http://actualmanager.com/print.php?aspid=102964\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" /></body>\n</html>"], ["entered", "2016-04-27"], ["modified", "2016-05-01"], ["status", "Sent"], ["sent", 3631], ["remaining", 0], ["listid", "[33]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-01"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[33]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "actual sales inativos souvie beauty"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Souvie - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 3603], ["unique_views", 854], ["viewed", 1094], ["clicked", 38], ["clicker", 36], ["hard_bounce", 0], ["soft_bounce", 28], ["unsub", 11], ["mirror_click", 14], ["complaints", 3], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":1637,\"delivered\":1637,\"viewed\":468,\"clicked\":14,\"hard_bounce\":0,\"unsub\":7,\"complaints\":3,\"unique_views\":372,\"unique_clicks\":13,\"soft_bounces\":0},\"gmail.com\":{\"sent\":937,\"delivered\":937,\"viewed\":394,\"clicked\":16,\"hard_bounce\":0,\"unsub\":4,\"complaints\":0,\"unique_views\":289,\"unique_clicks\":15,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":27,\"delivered\":27,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":21,\"delivered\":21,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":325,\"delivered\":325,\"viewed\":67,\"clicked\":5,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":58,\"unique_clicks\":5,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":66,\"delivered\":66,\"viewed\":16,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":12,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":33,\"delivered\":33,\"viewed\":15,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":11,\"unique_clicks\":2,\"soft_bounces\":0},\"usp.br\":{\"sent\":5,\"delivered\":5,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":244,\"delivered\":244,\"viewed\":53,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":46,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com\":{\"sent\":16,\"delivered\":16,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":64,\"delivered\":64,\"viewed\":13,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":12,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":10,\"delivered\":10,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":30,\"delivered\":30,\"viewed\":7,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":16,\"delivered\":16,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":23,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":23},\"msn.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":5,\"delivered\":5,\"viewed\":5,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.158781"], ["id", 131]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "140"]]
(0.1ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "140"], ["created_at", "2016-06-12 12:31:33.174291"], ["updated_at", "2016-06-12 12:31:33.174291"]]
(4.1ms) COMMIT
(0.1ms) BEGIN
SQL (1.3ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 140], ["campaign_name", "Combo Celular Grátis - Actual Sales - Inativos BOTH"], ["subject", "{PRENOM} Ganhe um smartphone grátis ao fechar o combo!"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n <head>\n \t<!-- NAME: 1:2 COLUMN -->\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n <title>Combo + Celular</title>\n \n <style type=\"text/css\">\n\t\tbody,#bodyTable,#bodyCell{\n\t\t\theight:100% !important;\n\t\t\tmargin:0;\n\t\t\tpadding:0;\n\t\t\twidth:100% !important;\n\t\t\tbackground-color:#E4E4E4;\n\t\t}\n\t\ttable{\n\t\t\tborder-collapse:collapse;\n\t\t}\n\t\timg,a img{\n\t\t\tborder:0;\n\t\t\toutline:none;\n\t\t\ttext-decoration:none;\n\t\t}\n\t\th1,h2,h3,h4,h5,h6{\n\t\t\tmargin:0;\n\t\t\tpadding:0;\n\t\t}\n\t\tp{\n\t\t\tmargin:1em 0;\n\t\t\tpadding:0;\n\t\t}\n\t\ta{\n\t\t\tword-wrap:break-word;\n\t\t}\n\t\t.ReadMsgBody{\n\t\t\twidth:100%;\n\t\t}\n\t\t.ExternalClass{\n\t\t\twidth:100%;\n\t\t}\n\t\t.ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{\n\t\t\tline-height:100%;\n\t\t}\n\t\ttable,td{\n\t\t\tmso-table-lspace:0pt;\n\t\t\tmso-table-rspace:0pt;\n\t\t}\n\t\t#outlook a{\n\t\t\tpadding:0;\n\t\t}\n\t\timg{\n\t\t\t-ms-interpolation-mode:bicubic;\n\t\t}\n\t\tbody,table,td,p,a,li,blockquote{\n\t\t\t-ms-text-size-adjust:100%;\n\t\t\t-webkit-text-size-adjust:100%;\n\t\t}\n\t\t#bodyCell{\n\t\t\tpadding:0 20px 20px;\n\t\t}\n\t\t.mcnImage{\n\t\t\tvertical-align:bottom;\n\t\t}\n\t\t.mcnTextContent img{\n\t\t\theight:auto !important;\n\t\t}\n\t\ta.mcnButton{\n\t\t\tdisplay:block;\n\t\t}\n\t/*\n\t@tab Page\n\t@section background style\n\t@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.\n\t*/\n\t\tbody,#bodyTable{\n\t\t\t/*@editable*/background-color:#ffffff;\n\t\t}\n\t/*\n\t@tab Page\n\t@section background style\n\t@tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.\n\t*/\n\t\t#bodyCell{\n\t\t\t/*@editable*/border-top:0;\n\t\t}\n\t/*\n\t@tab Page\n\t@section email border\n\t@tip Set the border for your email.\n\t*/\n\t\t#templateContainer{\n\t\t\t/*@editable*/border:0;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 1\n\t@tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\n\t@style heading 1\n\t*/\n\t\th1{\n\t\t\t/*@editable*/color:#25639d !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:Tahoma, Verdana, Segoe, sans-serif;\n\t\t\t/*@editable*/font-size:31px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:-1px;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 2\n\t@tip Set the styling for all second-level headings in your emails.\n\t@style heading 2\n\t*/\n\t\th2{\n\t\t\t/*@editable*/color:#000000 !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:26px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:-.75px;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 3\n\t@tip Set the styling for all third-level headings in your emails.\n\t@style heading 3\n\t*/\n\t\th3{\n\t\t\t/*@editable*/color:#000000 !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:18px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:-.5px;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Page\n\t@section heading 4\n\t@tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\n\t@style heading 4\n\t*/\n\t\th4{\n\t\t\t/*@editable*/color:#000000 !important;\n\t\t\tdisplay:block;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:16px;\n\t\t\t/*@editable*/font-style:normal;\n\t\t\t/*@editable*/font-weight:bold;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/letter-spacing:normal;\n\t\t\tmargin:0;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader style\n\t@tip Set the background color and borders for your email's preheader area.\n\t*/\n\t\t#templatePreheader{\n\t\t\t/*@editable*/background-color:#ffffff;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader text\n\t@tip Set the styling for your email's preheader text. Choose a size and color that is easy to read.\n\t*/\n\t\t.preheaderContainer .mcnTextContent,.preheaderContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#333333;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:11px;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/text-align:left;\n\t\t\t/*@editable*/background:#E4E4E4;\n\t\t}\n\t/*\n\t@tab Preheader\n\t@section preheader link\n\t@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.preheaderContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#C52E26;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header style\n\t@tip Set the background color and borders for your email's header area.\n\t*/\n\t\t#templateHeader{\n\t\t\t/*@editable*/background-color:#f2f2f2;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header text\n\t@tip Set the styling for your email's header text. Choose a size and color that is easy to read.\n\t*/\n\t\t.headerContainer .mcnTextContent,.headerContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#202020;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:16px;\n\t\t\t/*@editable*/line-height:150%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Header\n\t@section header link\n\t@tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.headerContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#C52E26;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body style\n\t@tip Set the background color and borders for your email's body area.\n\t*/\n\t\t#templateBody{\n\t\t\t/*@editable*/background-color:#FFFFFF;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body text\n\t@tip Set the styling for your email's body text. Choose a size and color that is easy to read.\n\t*/\n\t\t.bodyContainer .mcnTextContent,.bodyContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#202020;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:16px;\n\t\t\t/*@editable*/line-height:150%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Body\n\t@section body link\n\t@tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.bodyContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#C52E26;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Columns\n\t@section column style\n\t@tip Set the background color and borders for your email's columns area.\n\t*/\n\t\t#templateColumns{\n\t\t\t/*@editable*/background-color:#FFFFFF;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Columns\n\t@section left column text\n\t@tip Set the styling for your email's left column text. Choose a size and color that is easy to read.\n\t*/\n\t\t.leftColumnContainer .mcnTextContent,.leftColumnContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#202020;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:14px;\n\t\t\t/*@editable*/line-height:150%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Columns\n\t@section left column link\n\t@tip Set the styling for your email's left column links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.leftColumnContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#C52E26;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Columns\n\t@section right column text\n\t@tip Set the styling for your email's right column text. Choose a size and color that is easy to read.\n\t*/\n\t\t.rightColumnContainer .mcnTextContent,.rightColumnContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#202020;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:14px;\n\t\t\t/*@editable*/line-height:150%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Columns\n\t@section right column link\n\t@tip Set the styling for your email's right column links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.rightColumnContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#C52E26;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer style\n\t@tip Set the background color and borders for your email's footer area.\n\t*/\n\t\t#templateFooter{\n\t\t\t/*@editable*/background-color:#ffffff;\n\t\t\t/*@editable*/border-top:0;\n\t\t\t/*@editable*/border-bottom:0;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer text\n\t@tip Set the styling for your email's footer text. Choose a size and color that is easy to read.\n\t*/\n\t\t.footerContainer .mcnTextContent,.footerContainer .mcnTextContent p{\n\t\t\t/*@editable*/color:#CCCCCC;\n\t\t\t/*@editable*/font-family:Helvetica;\n\t\t\t/*@editable*/font-size:10px;\n\t\t\t/*@editable*/line-height:125%;\n\t\t\t/*@editable*/text-align:left;\n\t\t}\n\t/*\n\t@tab Footer\n\t@section footer link\n\t@tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.\n\t*/\n\t\t.footerContainer .mcnTextContent a{\n\t\t\t/*@editable*/color:#CCCCCC;\n\t\t\t/*@editable*/font-weight:normal;\n\t\t\t/*@editable*/text-decoration:underline;\n\t\t}\n\t@media only screen and (max-width: 480px){\n\t\tbody,table,td,p,a,li,blockquote{\n\t\t\t-webkit-text-size-adjust:none !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\tbody{\n\t\t\twidth:100% !important;\n\t\t\tmin-width:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[id=bodyCell]{\n\t\t\tpadding:0 5px 20px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnTextContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnBoxedTextContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcpreview-image-uploader]{\n\t\t\twidth:100% !important;\n\t\t\tdisplay:none !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\timg[class=mcnImage]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnImageGroupContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageGroupContent]{\n\t\t\tpadding:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageGroupBlockInner]{\n\t\t\tpadding-bottom:0 !important;\n\t\t\tpadding-top:0 !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttbody[class=mcnImageGroupBlockOuter]{\n\t\t\tpadding-bottom:9px !important;\n\t\t\tpadding-top:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnCaptionTopContent],table[class=mcnCaptionBottomContent]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnCaptionLeftTextContentContainer],table[class=mcnCaptionRightTextContentContainer],table[class=mcnCaptionLeftImageContentContainer],table[class=mcnCaptionRightImageContentContainer],table[class=mcnImageCardLeftTextContentContainer],table[class=mcnImageCardRightTextContentContainer]{\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardLeftImageContent],td[class=mcnImageCardRightImageContent]{\n\t\t\tpadding-right:18px !important;\n\t\t\tpadding-left:18px !important;\n\t\t\tpadding-bottom:0 !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardBottomImageContent]{\n\t\t\tpadding-bottom:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnImageCardTopImageContent]{\n\t\t\tpadding-top:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttable[class=mcnCaptionLeftContentOuter] td[class=mcnTextContent],table[class=mcnCaptionRightContentOuter] td[class=mcnTextContent]{\n\t\t\tpadding-top:9px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnCaptionBlockInner] table[class=mcnCaptionTopContent]:last-child td[class=mcnTextContent]{\n\t\t\tpadding-top:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnBoxedTextContentColumn]{\n\t\t\tpadding-left:18px !important;\n\t\t\tpadding-right:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=columnsContainer]{\n\t\t\tdisplay:block !important;\n\t\t\tmax-width:600px !important;\n\t\t\twidth:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=mcnTextContent]{\n\t\t\tpadding-right:18px !important;\n\t\t\tpadding-left:18px !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section template width\n\t@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.\n\t*/\n\t\ttable[id=templateContainer],table[id=templatePreheader],table[id=templateHeader],table[id=templateColumns],table[class=templateColumn],table[id=templateBody],table[id=templateFooter]{\n\t\t\t/*@tab Mobile Styles\n@section template width\n@tip Make the template fluid for portrait or landscape view adaptability. If a fluid layout doesn't work for you, set the width to 300px instead.*/max-width:600px !important;\n\t\t\t/*@editable*/width:100% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 1\n\t@tip Make the first-level headings larger in size for better readability on small screens.\n\t*/\n\t\th1{\n\t\t\t/*@editable*/font-size:24px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 2\n\t@tip Make the second-level headings larger in size for better readability on small screens.\n\t*/\n\t\th2{\n\t\t\t/*@editable*/font-size:20px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 3\n\t@tip Make the third-level headings larger in size for better readability on small screens.\n\t*/\n\t\th3{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section heading 4\n\t@tip Make the fourth-level headings larger in size for better readability on small screens.\n\t*/\n\t\th4{\n\t\t\t/*@editable*/font-size:16px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Boxed Text\n\t@tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.\n\t*/\n\t\ttable[class=mcnBoxedTextContentContainer] td[class=mcnTextContent],td[class=mcnBoxedTextContentContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Preheader Visibility\n\t@tip Set the visibility of the email's preheader on small screens. You can hide it to save space.\n\t*/\n\t\ttable[id=templatePreheader]{\n\t\t\t/*@editable*/display:block !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Preheader Text\n\t@tip Make the preheader text larger in size for better readability on small screens.\n\t*/\n\t\ttd[class=preheaderContainer] td[class=mcnTextContent],td[class=preheaderContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:14px !important;\n\t\t\t/*@editable*/line-height:115% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Header Text\n\t@tip Make the header text larger in size for better readability on small screens.\n\t*/\n\t\ttd[class=headerContainer] td[class=mcnTextContent],td[class=headerContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Body Text\n\t@tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.\n\t*/\n\t\ttd[class=bodyContainer] td[class=mcnTextContent],td[class=bodyContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Left Column Text\n\t@tip Make the left column text larger in size for better readability on small screens. We recommend a font size of at least 16px.\n\t*/\n\t\ttd[class=leftColumnContainer] td[class=mcnTextContent],td[class=leftColumnContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section Right Column Text\n\t@tip Make the right column text larger in size for better readability on small screens. We recommend a font size of at least 16px.\n\t*/\n\t\ttd[class=rightColumnContainer] td[class=mcnTextContent],td[class=rightColumnContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:18px !important;\n\t\t\t/*@editable*/line-height:125% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t/*\n\t@tab Mobile Styles\n\t@section footer text\n\t@tip Make the body content text larger in size for better readability on small screens.\n\t*/\n\t\ttd[class=footerContainer] td[class=mcnTextContent],td[class=footerContainer] td[class=mcnTextContent] p{\n\t\t\t/*@editable*/font-size:14px !important;\n\t\t\t/*@editable*/line-height:115% !important;\n\t\t}\n\n}\t@media only screen and (max-width: 480px){\n\t\ttd[class=footerContainer] a[class=utilityLink]{\n\t\t\tdisplay:block !important;\n\t\t}\n\n</style></head>\n <body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\">\n\t<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n \n <!-- Header Ends -->\n <center>\n <table align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\" id=\"bodyTable\">\n <tr>\n <td align=\"center\" valign=\"top\" id=\"bodyCell\">\n <!-- BEGIN TEMPLATE // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"templateContainer\">\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN PREHEADER // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"templatePreheader\">\n <tr>\n \t<td valign=\"top\" class=\"preheaderContainer\" style=\"padding-top:9px; padding-bottom:9px; background-color:#E4E4E4;\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnTextBlock\">\n <tbody class=\"mcnTextBlockOuter\">\n <tr>\n <td valign=\"top\" class=\"mcnTextBlockInner\">\n \n \n \n </td>\n </tr>\n </tbody>\n</table></td>\n </tr>\n </table>\n <!-- // END PREHEADER -->\n </td>\n </tr>\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN HEADER // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"templateHeader\">\n <tr>\n <td valign=\"top\" class=\"headerContainer\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnImageBlock\">\n <tbody class=\"mcnImageBlockOuter\">\n <tr>\n <td valign=\"top\" style=\"padding:9px\" class=\"mcnImageBlockInner\">\n <table align=\"left\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnImageContentContainer\">\n <tbody><tr>\n <td class=\"mcnImageContent\" valign=\"top\" style=\"padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0;\">\n \n \n <img align=\"left\" alt=\"Combo + Celular\" src=\"http://imagensinfo.com/combocelular/nl-combo-celular/logo.png\" width=\"224\" style=\"max-width:224px; padding-bottom: 0; display: inline !important; vertical-align: bottom;\" class=\"mcnImage\">\n \n \n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n \n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px; background-color:#fff;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n \n </tbody>\n</table></td>\n </tr>\n </table>\n <!-- // END HEADER -->\n \n </td>\n </tr>\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN BODY // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"templateBody\">\n <tr>\n <td valign=\"top\" class=\"bodyContainer\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnTextBlock\">\n <tbody class=\"mcnTextBlockOuter\">\n <tr>\n <td valign=\"top\" class=\"mcnTextBlockInner\">\n \n <table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"366\" class=\"mcnTextContentContainer\">\n <tbody\n ><tr>\n \n <td valign=\"top\" class=\"mcnTextContent\" style=\"padding: 9px 0px 9px 18px;color: #575757;font-family: Tahoma, Verdana, Segoe, sans-serif;text-align: left;\">\n \n <h1 class=\"null\" style=\"text-align: left;\">Tenha TV por assinatura, <span style=\"font-size:33px\">telefone fixo, internet e</span> <strong style=\"font-size:37px; font-weight:bold\">ganhe um celular!</strong></h1>\n<br>\nContrate um combo para sua casa e ganhe um smartphone.\n </td>\n </tr>\n </tbody></table>\n \n <table align=\"right\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"197\" class=\"mcnTextContentContainer\">\n <tbody><tr>\n \n <td valign=\"top\" class=\"mcnTextContent\" style=\"padding: 9px 18px 9px 0px;color: #575757;font-family: Tahoma, Verdana, Segoe, sans-serif;text-align: left;\">\n \n <img src=\"http://imagensinfo.com/combocelular/nl-combo-celular/splash.png\" alt=\"Receba o celular na sua casa!\" width=\"137\" height=\"137\" align=\"none\" style=\"width: 137px; height: 137px; margin: 0px;\">\n </td>\n </tr>\n </tbody></table>\n \n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnDividerBlock\">\n <tbody class=\"mcnDividerBlockOuter\">\n <tr>\n <td class=\"mcnDividerBlockInner\" style=\"padding: 10px 18px;\">\n <table class=\"mcnDividerContent\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n <tbody><tr>\n <td>\n <span></span>\n </td>\n </tr>\n </tbody></table>\n </td>\n </tr>\n </tbody>\n</table></td>\n </tr>\n </table>\n <!-- // END BODY -->\n </td>\n </tr>\n <tr>\n <td align=\"center\" valign=\"top\">\n <!-- BEGIN COLUMNS // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"templateColumns\">\n <tr>\n <td align=\"left\" valign=\"top\" class=\"columnsContainer\" width=\"50%\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"templateColumn\">\n <tr>\n <td valign=\"top\" class=\"leftColumnContainer\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n \n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnCaptionBlock\">\n <tbody class=\"mcnCaptionBlockOuter\">\n <tr>\n <td class=\"mcnCaptionBlockInner\" valign=\"top\" style=\"padding:9px;\">\n \n\n<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnCaptionBottomContent\" width=\"false\">\n <tbody><tr>\n <td class=\"mcnCaptionBottomImageContent\" align=\"center\" valign=\"top\" style=\"padding:0 9px 9px 9px;\">\n \n \n\n <img alt=\"Galaxy Pocket 2\" src=\"http://imagensinfo.com/combocelular/nl-combo-celular/galaxy-pocket-2.png\" width=\"99\" style=\"max-width:99px;\" class=\"mcnImage\">\n \n \n </td>\n </tr>\n <tr>\n <td class=\"mcnTextContent\" valign=\"top\" style=\"padding: 0px 9px; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 16px; font-weight: bold; text-align: center;\" width=\"264\">\n Galaxy Pocket 2\n </td>\n </tr>\n</tbody></table>\n\n\n\n\n\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n <tr>\n <td style=\"padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;\" valign=\"top\" align=\"center\" class=\"mcnButtonBlockInner\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnButtonContentContainer\" style=\"border-collapse: separate !important;border: 1px solid #D07300;border-radius: 50px;background-color: #FF920A;\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" class=\"mcnButtonContent\" style=\"font-family: Arial; font-size: 14px; padding: 10px;\">\n <a class=\"mcnButton \" title=\"QUERO ESTE\" href=\"http://actualmanager.com/click.php?aspid=4901a4835d6b0bc7710bd18e350872a6\" target=\"_self\" style=\"font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF; padding:0 20px;\">QUERO ESTE</a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnCaptionBlock\">\n <tbody class=\"mcnCaptionBlockOuter\">\n <tr>\n <td class=\"mcnCaptionBlockInner\" valign=\"top\" style=\"padding:9px;\">\n \n\n<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnCaptionBottomContent\" width=\"false\">\n <tbody><tr>\n <td class=\"mcnCaptionBottomImageContent\" align=\"center\" valign=\"top\" style=\"padding:0 9px 9px 9px;\">\n \n \n\n <img alt=\"Sonu Xperia T3\" src=\"http://imagensinfo.com/combocelular/nl-combo-celular/sony-xperia-t3.png\" width=\"103\" style=\"max-width:103px;\" class=\"mcnImage\">\n \n \n </td>\n </tr>\n <tr>\n <td class=\"mcnTextContent\" valign=\"top\" style=\"padding: 0px 9px; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 14px; font-weight: bold; text-align: center;\" width=\"264\">\n Sony Xperia T3\n </td>\n </tr>\n</tbody></table>\n\n\n\n\n\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n <tr>\n <td style=\"padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;\" valign=\"top\" align=\"center\" class=\"mcnButtonBlockInner\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnButtonContentContainer\" style=\"border-collapse: separate !important;border: 1px solid #D07300;border-radius: 50px;background-color: #FF920A;\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" class=\"mcnButtonContent\" style=\"font-family: Arial; font-size: 14px; padding: 10px;\">\n <a class=\"mcnButton \" title=\"QUERO ESTE\" href=\"http://actualmanager.com/click.php?aspid=4901a4835d6b0bc7710bd18e350872a6\" target=\"_self\" style=\"font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF; padding:0 20px;\">QUERO ESTE</a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table></td>\n </tr>\n </table>\n </td>\n <td align=\"left\" valign=\"top\" class=\"columnsContainer\" width=\"50%\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"templateColumn\">\n <tr>\n <td valign=\"top\" class=\"rightColumnContainer\"><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnCaptionBlock\">\n <tbody class=\"mcnCaptionBlockOuter\">\n <tr>\n <td class=\"mcnCaptionBlockInner\" valign=\"top\" style=\"padding:9px;\">\n \n\n<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnCaptionBottomContent\" width=\"false\">\n <tbody><tr>\n <td class=\"mcnCaptionBottomImageContent\" align=\"center\" valign=\"top\" style=\"padding:0 9px 9px 9px;\">\n \n \n\n <img alt=\"Nokia Lumia 365\" src=\"http://imagensinfo.com/combocelular/nl-combo-celular/nokia-lumia-635.png\" width=\"104\" style=\"max-width:104px;\" class=\"mcnImage\">\n \n \n </td>\n </tr>\n <tr>\n <td class=\"mcnTextContent\" valign=\"top\" style=\"padding: 0px 9px; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 14px; font-weight: bold; text-align: center;\" width=\"264\">\n Nokia Lumia 365\n </td>\n </tr>\n</tbody></table>\n\n\n\n\n\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n <tr>\n <td style=\"padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;\" valign=\"top\" align=\"center\" class=\"mcnButtonBlockInner\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnButtonContentContainer\" style=\"border-collapse: separate !important;border: 1px solid #D07300;border-radius: 50px;background-color: #FF920A;\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" class=\"mcnButtonContent\" style=\"font-family: Arial; font-size: 14px; padding: 10px;\">\n <a class=\"mcnButton \" title=\"QUERO ESTE\" href=\"http://actualmanager.com/click.php?aspid=4901a4835d6b0bc7710bd18e350872a6\" target=\"_self\" style=\"font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF; padding:0 20px;\">QUERO ESTE</a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnCaptionBlock\">\n <tbody class=\"mcnCaptionBlockOuter\">\n <tr>\n <td class=\"mcnCaptionBlockInner\" valign=\"top\" style=\"padding:9px;\">\n \n\n<table align=\"left\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnCaptionBottomContent\" width=\"false\">\n <tbody><tr>\n <td class=\"mcnCaptionBottomImageContent\" align=\"center\" valign=\"top\" style=\"padding:0 9px 9px 9px;\">\n \n \n\n <img alt=\"Galaxy S5\" src=\"http://imagensinfo.com/combocelular/nl-combo-celular/galaxy-s5.png\" width=\"103\" style=\"max-width:103px;\" class=\"mcnImage\">\n \n \n </td>\n </tr>\n <tr>\n <td class=\"mcnTextContent\" valign=\"top\" style=\"padding: 0px 9px; font-family: Tahoma, Verdana, Segoe, sans-serif; font-size: 14px; font-weight: bold; text-align: center;\" width=\"264\">\n Galaxy S5\n </td>\n </tr>\n</tbody></table>\n\n\n\n\n\n </td>\n </tr>\n </tbody>\n</table><table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"mcnButtonBlock\">\n <tbody class=\"mcnButtonBlockOuter\">\n <tr>\n <td style=\"padding-top:0; padding-right:18px; padding-bottom:18px; padding-left:18px;\" valign=\"top\" align=\"center\" class=\"mcnButtonBlockInner\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"mcnButtonContentContainer\" style=\"border-collapse: separate !important;border: 1px solid #D07300;border-radius: 50px;background-color: #FF920A;\">\n <tbody>\n <tr>\n <td align=\"center\" valign=\"middle\" class=\"mcnButtonContent\" style=\"font-family: Arial; font-size: 14px; padding: 10px;\">\n <a class=\"mcnButton \" title=\"QUERO ESTE\" href=\"http://actualmanager.com/click.php?aspid=4901a4835d6b0bc7710bd18e350872a6\" target=\"_self\" style=\"font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF; padding:0 20px;\">QUERO ESTE</a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n</table></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n <!-- // END COLUMNS -->\n </td>\n </tr>\n <tr>\n <td align=\"center\" valign=\"top\" style=\"padding-bottom:40px;\">\n <!-- BEGIN FOOTER // -->\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"templateFooter\">\n <tr>\n <td valign=\"top\" class=\"footerContainer\" style=\"padding-top:9px; padding-bottom:9px;\"></td>\n </tr>\n </table>\n <!-- // END FOOTER -->\n </td>\n </tr>\n </table>\n <!-- // END TEMPLATE -->\n </td>\n </tr>\n </table>\n </center>\n\t\t<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n <img src=\"http://actualmanager.com/print.php?aspid=102971\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" /></body>\n</html>"], ["entered", "2016-04-27"], ["modified", "2016-04-27"], ["status", "Sent"], ["sent", 0], ["remaining", 0], ["listid", "[83]"], ["exclude_list", "[5, 14, 37]"], ["scheduled_date", "2016-05-02"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37], \"$in\"=>[83]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "actual sales inativos combocelulargratis both"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Combo Smartphone Grátis - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 0], ["unique_views", 0], ["viewed", 0], ["clicked", 0], ["clicker", 0], ["hard_bounce", 0], ["soft_bounce", 0], ["unsub", 0], ["mirror_click", 0], ["complaints", 0], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":1637,\"delivered\":1637,\"viewed\":468,\"clicked\":14,\"hard_bounce\":0,\"unsub\":7,\"complaints\":3,\"unique_views\":372,\"unique_clicks\":13,\"soft_bounces\":0},\"gmail.com\":{\"sent\":937,\"delivered\":937,\"viewed\":394,\"clicked\":16,\"hard_bounce\":0,\"unsub\":4,\"complaints\":0,\"unique_views\":289,\"unique_clicks\":15,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":27,\"delivered\":27,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":21,\"delivered\":21,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":325,\"delivered\":325,\"viewed\":67,\"clicked\":5,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":58,\"unique_clicks\":5,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":66,\"delivered\":66,\"viewed\":16,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":12,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":33,\"delivered\":33,\"viewed\":15,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":11,\"unique_clicks\":2,\"soft_bounces\":0},\"usp.br\":{\"sent\":5,\"delivered\":5,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":244,\"delivered\":244,\"viewed\":53,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":46,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com\":{\"sent\":16,\"delivered\":16,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":64,\"delivered\":64,\"viewed\":13,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":12,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":10,\"delivered\":10,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":30,\"delivered\":30,\"viewed\":7,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":16,\"delivered\":16,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":23,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":23},\"msn.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":5,\"delivered\":5,\"viewed\":5,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":2,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"sanepar.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.186115"], ["id", 132]]
(3.9ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "138"]]
(0.1ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "138"], ["created_at", "2016-06-12 12:31:33.202972"], ["updated_at", "2016-06-12 12:31:33.202972"]]
(8.3ms) COMMIT
(0.2ms) BEGIN
SQL (0.6ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 138], ["campaign_name", "WM - Relance - 2 Campagnes"], ["subject", "{PRENOM} Pegue seus PRESENTES !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\"><!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n<style type=\"text/css\">\nimg {\n\tbackground-position: center;\n\tmargin: auto;\n\tdisplay: block;\n}\n</style>\n</head>\n<body bgcolor=\"#ffffff\">\n<!-- Header Begins -->\n<center><div>\n<p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></div></center>\n\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <center>\n <div>\n\t<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">{PRENOM}, </p></td>\n </tr>\n\n</table>\n\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n \n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">Agora voc&ecirc; faz parte do <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MAIOR</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"2\" color=\"#d9251c\"><strong>MELHOR</strong></font> clube de ofertas da internet:</p></td>\n </tr>\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\"><font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Sorteios</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Amostras Gr&aacute;tis</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>Descontos</strong></font>, <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>E-books gr&aacute;tis</strong></font> e <font face=\"Arial, Helvetica, sans-serif\" size=\"4\" color=\"#d9251c\"><strong>MUITO MAIS</strong></font>...</p></td>\n </tr>\n</table>\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block;\">E pra mostrar que a gente n&atilde;o est&aacute; brincando, aqui est&atilde;o seus primeiros presentes :</p></td>\n </tr>\n</table>\n<br />\n<br />\n<table width=\"640px;\" style=\"margin:auto;\" border=\"0\">\n <tr>\n <td width=\"320\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: justify; display: block; padding: 3px 5px 3px 5px;\">E-book GRATUITO com TUDO o que voc&ecirc; precisa saber pra GANHAR DINHEIRO na internet:</p></td>\n <td width=\"640\"><p style=\"font-family: Arial, Helvetica Neue, Helvetica, sans-serif; font-size:12pt; line-height: 23pt; color:#5e5e5e; text-align: center; display: block; padding: 3px 5px 3px 5px; margin:auto;\">Pra aproveitar a Mega-Sena: 6 apostas pelo pre&ccedil;o de 3! Deixe sua SORTE falar mais alto !</p></td></tr>\n <tr>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://actualmanager.com/click.php?aspid=ef65ebe0fed701bd1ba3cd3fac5fa835\">E-book Gratuito !</a></center></td>\n <td width=\"320\"><center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-family: Courier New;\n color: #f3f3f3;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\tmargin: auto;\n\t \" href=\"http://www.r-mkt.com/redirect/to/crovamedia/lottoland/{EMAIL}/keepmedia.go2cloud.org/aff_c?offer_id=5561&aff_id=1227&file_id=3363&url_id=125361\">Aposta EM DOBRO !</a></center></td>\n </tr>\n</table>\n<br />\n<br />\n</div></center>\n<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<!-- Pixel Check List -->\n<img src=\"http://actualmanager.com/print.php?aspid=102566\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" />\n<!-- PixelLottoland -->\n<img src=\"http://tracking.bluesharkmedia.com.br/aff_i?offer_id=5561&aff_id=1227&file_id=3363\" width=\"1\" height=\"1\" />\n<!-- Footer Ends --> </body>"], ["entered", "2016-04-27"], ["modified", "2016-04-27"], ["status", "Sent"], ["sent", 9819], ["remaining", 0], ["listid", "[83, 84]"], ["exclude_list", "[5, 14, 33, 34, 37, 38, 75]"], ["scheduled_date", "2016-04-27"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 33, 34, 37, 38, 75], \"$in\"=>[83, 84]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "Welcome Mail Inativos 2Campaigns relance"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 9646], ["unique_views", 457], ["viewed", 593], ["clicked", 141], ["clicker", 100], ["hard_bounce", 47], ["soft_bounce", 126], ["unsub", 33], ["mirror_click", 48], ["complaints", 3], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"globomail.com\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":1,\"soft_bounces\":0},\"gmail.com\":{\"sent\":5239,\"delivered\":5238,\"viewed\":262,\"clicked\":37,\"hard_bounce\":0,\"unsub\":17,\"complaints\":0,\"unique_views\":196,\"unique_clicks\":30,\"soft_bounces\":1},\"hotmail.com\":{\"sent\":2219,\"delivered\":2193,\"viewed\":82,\"clicked\":38,\"hard_bounce\":5,\"unsub\":0,\"complaints\":0,\"unique_views\":70,\"unique_clicks\":32,\"soft_bounces\":21},\"yahoo.com.br\":{\"sent\":1156,\"delivered\":1156,\"viewed\":172,\"clicked\":25,\"hard_bounce\":0,\"unsub\":12,\"complaints\":3,\"unique_views\":131,\"unique_clicks\":21,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":54,\"delivered\":54,\"viewed\":4,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":86,\"delivered\":47,\"viewed\":1,\"clicked\":0,\"hard_bounce\":39,\"unsub\":1,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":35,\"delivered\":35,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":66,\"delivered\":66,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":14,\"delivered\":14,\"viewed\":7,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":1,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":283,\"delivered\":283,\"viewed\":25,\"clicked\":4,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":21,\"unique_clicks\":4,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":63,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":63},\"rocketmail.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":83,\"delivered\":83,\"viewed\":5,\"clicked\":4,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":4,\"soft_bounces\":0},\"icloud.com\":{\"sent\":10,\"delivered\":10,\"viewed\":4,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":7,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":7},\"r7.com\":{\"sent\":14,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"zipmail.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":23,\"delivered\":22,\"viewed\":2,\"clicked\":2,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":2,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":96,\"delivered\":96,\"viewed\":7,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":0,\"soft_bounces\":0},\"gmail.com.br\":{\"sent\":6,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":6},\"ibest.com.br\":{\"sent\":5,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":1},\"globo.com\":{\"sent\":14,\"delivered\":14,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":6,\"delivered\":6,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"gmai.com\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":8,\"delivered\":8,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"mail.com\":{\"sent\":5,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":5},\"hotmai.com\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3},\"prefeitura.sp.gov.br\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"homail.com\":{\"sent\":3,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":3}}"], ["updated_at", "2016-06-12 12:31:33.220444"], ["id", 133]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "137"]]
(0.2ms) BEGIN
SQL (0.2ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "137"], ["created_at", "2016-06-12 12:31:33.237573"], ["updated_at", "2016-06-12 12:31:33.237573"]]
(4.0ms) COMMIT
(0.2ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 137], ["campaign_name", "Mundo de Opiniões - DGMax - Ativos ALL"], ["subject", "{PRENOM} Ganhe DINHEIRO para dar sua opinião, porque ela VALE MUITO !"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<body style=\"margin:0; padding:0;\">\n<!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n\t\n\n\t<center>\n\t<div>\n\t\n\n\n<center>\n<table width=\"600\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#FFFFFF\">\n\t<tr bgcolor=\"#000000\" >\n \t<td style=\"font-size:0; padding-left: 0px;\" colspan=\"2\" align=\"left\">\n \t<img src=\"http://webassets.ssisurveys.com/opinionworld/LP_images/LatAm/header_br.jpg\" border=\"0\" /> \n </td>\n </tr>\n\t<tr>\n \t<td style=\"text-align: center; font-size: 22px; font-family: Arial, Helvetica, sans-serif;\" colspan=\"2\">\n \t\t<font family=\"Arial\" color=\"#23368c\"><strong>PARTICIPE DE PESQUISAS PARA GANHAR PR&Ecirc;MIOS!\n\t\t\t\t</strong></font>\n\t\t</td>\n\t</tr>\n <tr>\n \t<td style=\"text-align: center; font-size: 15.25px; font-family: Arial, Helvetica, sans-serif;\" colspan=\"2\">\n \t\t<font family=\"Arial\" color=\"#4b9c12\"><strong>Fazer o cadastro &eacute; f&aacute;cil E gratuito - receba recompensas pelas suas opini&otilde;es.</strong></font>\n\t\t</td>\n\t</tr>\n\t<tr>\n \t<td style=\"text-align: left; font-size: 14px; font-family: Arial, Helvetica, sans-serif; padding: 0px 40px 5px 40px;\" colspan=\"2\">\n \t<p>Voc&ecirc; pode ganhar &oacute;timos PR&Ecirc;MIOS quando compartilhar as suas opini&otilde;es em pesquisas importantes. Entre para a comunidade Mundo de Opini&otilde;es gratuitamente e \n ganhe pr&ecirc;mios pela sua participa&ccedil;&atilde;o!<br /><br />\n \n \t</p>\t\n\t\t</td>\n </tr>\n\t<tr style=\"padding-top: 5px;\">\n\t\t<td align=\"center\">\n <a href=\"http://lttrk1.com/?a=21477&c=2747&s1=\" target=\"_blank\"><img src=\"http://webassets.ssisurveys.com/opinionworld/LP_images/LatAm/button_br.jpg\" alt=\"Button\" border=\"0\" /></a>\n </td>\n\t</tr>\n <tr>\n\t\t<td>&nbsp;</td>\n\t</tr>\n\t<tr bgcolor=\"#5f5f5f\" style=\"padding-top: 5px; padding-bottom: 5px;\">\n\t\t<td colspan=\"3\" style=\"padding-right: 20px; font-size: 11px;\"><font color=\"#b4b4b4\" align=\"center\" face=\"Arial, Helvetica, sans-serif\">\n\t\t\t<p><center>*Os pr&ecirc;mios ser&atilde;o dados apenas a membros registrados da Mundo de Opini&otilde;es. <br />Obrigado por ser um membro da nossa comunidade!</center></p>\n\t\t<p><center><a href=\"http://content.mundodeopinioes.com.br/pt-BR/policies/privacy\" target=\"_blank\" style=\"color: #FFFFFF;\">Pol&iacute;tica de Privacidade</a>&nbsp;|&nbsp;<a href=\"http://content.mundodeopinioes.com.br/pt-BR/policies/terms\" target=\"_blank\" style=\"color: #FFFFFF;\">Termos e Condi&ccedil;&otilde;es</a>&nbsp;|&nbsp;<a href=\"http://www.mundodeopinioes.com.br/secured/my-account/my-profile?entity_id=%3C#DubKnowledge[1500/Entity id]>&pw=<#DubKnowledge[1201/Password]>\" target=\"_blank\" style=\"color: #FFFFFF;\">Descadastrar</a></center></p>\n\t\t<p><center>Copyright 2013 &copy; Survey Sampling International, LLC. Todos os direitos reservados.</center></p></font>\t\n\t\t</td>\n\t</tr>\n\t\n</table>\n</center>\n\n\t\n\t\n\t</div>\n\t</center>\n\t<!-- Main Content Ends -->\n\t\n\t<!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n\t</body>"], ["entered", "2016-04-25"], ["modified", "2016-04-25"], ["status", "Sent"], ["sent", 5677], ["remaining", 0], ["listid", "[33, 34, 75]"], ["exclude_list", "[5, 14, 37, 80, 81, 83, 84, 85, 60]"], ["scheduled_date", "2016-04-27"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37, 80, 81, 83, 84, 85, 60], \"$in\"=>[33, 34, 75]}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "mundodeopinioes ativos dgmax ALL"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "Mundo de Opiniões - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 5579], ["unique_views", 1007], ["viewed", 1318], ["clicked", 151], ["clicker", 131], ["hard_bounce", 3], ["soft_bounce", 95], ["unsub", 14], ["mirror_click", 43], ["complaints", 2], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":2214,\"delivered\":2214,\"viewed\":652,\"clicked\":62,\"hard_bounce\":0,\"unsub\":3,\"complaints\":2,\"unique_views\":505,\"unique_clicks\":55,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":611,\"delivered\":607,\"viewed\":93,\"clicked\":20,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":85,\"unique_clicks\":19,\"soft_bounces\":4},\"gmail.com\":{\"sent\":1226,\"delivered\":1226,\"viewed\":199,\"clicked\":23,\"hard_bounce\":0,\"unsub\":4,\"complaints\":0,\"unique_views\":169,\"unique_clicks\":20,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":723,\"delivered\":723,\"viewed\":123,\"clicked\":24,\"hard_bounce\":0,\"unsub\":2,\"complaints\":0,\"unique_views\":96,\"unique_clicks\":20,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":93,\"delivered\":93,\"viewed\":32,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":16,\"unique_clicks\":2,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":63,\"delivered\":60,\"viewed\":11,\"clicked\":2,\"hard_bounce\":3,\"unsub\":0,\"complaints\":0,\"unique_views\":11,\"unique_clicks\":2,\"soft_bounces\":0},\"usp.br\":{\"sent\":4,\"delivered\":4,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":38,\"delivered\":38,\"viewed\":5,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":246,\"delivered\":246,\"viewed\":79,\"clicked\":10,\"hard_bounce\":0,\"unsub\":2,\"complaints\":0,\"unique_views\":61,\"unique_clicks\":8,\"soft_bounces\":0},\"globo.com\":{\"sent\":24,\"delivered\":24,\"viewed\":8,\"clicked\":2,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"icloud.com\":{\"sent\":44,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":44},\"oi.com.br\":{\"sent\":35,\"delivered\":35,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":24,\"delivered\":24,\"viewed\":5,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com\":{\"sent\":49,\"delivered\":49,\"viewed\":5,\"clicked\":1,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":5,\"unique_clicks\":1,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":35,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":32},\"superig.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":10,\"delivered\":8,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":2},\"zipmail.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":18,\"delivered\":18,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":6,\"delivered\":6,\"viewed\":3,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":1,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":4,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"sanepar.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.250308"], ["id", 134]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "136"]]
(0.2ms) BEGIN
SQL (0.3ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "136"], ["created_at", "2016-06-12 12:31:33.265367"], ["updated_at", "2016-06-12 12:31:33.265367"]]
(4.0ms) COMMIT
(0.2ms) BEGIN
SQL (0.7ms) UPDATE "shoots" SET "id" = $1, "campaign_name" = $2, "subject" = $3, "bat_sent" = $4, "type" = $5, "html_content" = $6, "entered" = $7, "modified" = $8, "status" = $9, "sent" = $10, "remaining" = $11, "listid" = $12, "exclude_list" = $13, "scheduled_date" = $14, "filter" = $15, "tags" = $16, "header" = $17, "footer" = $18, "from_name" = $19, "from_email" = $20, "form_name" = $21, "reply_to" = $22, "delivered" = $23, "unique_views" = $24, "viewed" = $25, "clicked" = $26, "clicker" = $27, "hard_bounce" = $28, "soft_bounce" = $29, "unsub" = $30, "mirror_click" = $31, "complaints" = $32, "to_field" = $33, "share_link" = $34, "stats_by_domain" = $35, "updated_at" = $36 WHERE "shoots"."id" = $37 [["id", 136], ["campaign_name", "English Town - Actual Sales - Ativos ALL"], ["subject", "{PRENOM} VÁ PARA ORLANDO e PAGUE 30%OFF NO CURSO DE INGLÊS"], ["bat_sent", "yes"], ["type", "classic"], ["html_content", "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html>\n\n<head>\n <title>Coloque seu ingl&ecirc;s em campo - em Orlando!</title>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"> </head>\n\n<body style=\"font-family:arial;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;width:100% !important;background-color:#ffffff;-webkit-font-smoothing:antialiased;-ms-font-smoothing:antialiased;-o-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;\">\n <!-- Header Begins -->\n<center><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 40px;\n\ttext-shadow: 1px 2px 5px;\n\ttext-align:center;\n\tmargign:auto;\">A Boa do Dia !</p></center>\n\t <center><a style=\"\n\t width: 195px;\n background: #0AA7FF;\n background-image: -webkit-linear-gradient(top, #3498db, #2980b9);\n background-image: -moz-linear-gradient(top, #3498db, #2980b9);\n background-image: -ms-linear-gradient(top, #3498db, #2980b9);\n background-image: -o-linear-gradient(top, #3498db, #2980b9);\n background-image: linear-gradient(to bottom, #3498db, #2980b9);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n font-size: 20px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tborder-radius: 5px;\n\tfont-weight: bold;\n\tcolor: #F3F3F3;\n\ttext-decoration:none;\n\tmargin-right: 155px;\n\t \" href=\"[MIRROR]\">Navegador</a>\n\t <a style=\"\n\t background-color: #FF161A;\n\twidth: 195px;\n background-image: -webkit-linear-gradient(top, #FF161A, #FF161A);\n background-image: -moz-linear-gradient(top, #FF161A, #FF161A);\n background-image: -ms-linear-gradient(top, #FF161A, #FF161A);\n background-image: -o-linear-gradient(top, #FF161A, #FF161A);\n background-image: linear-gradient(to bottom, #FF161A, #FF161A);\n -webkit-border-radius: 28;\n -moz-border-radius: 28;\n border-radius: 28px;\n color: #f3f3f3;\n font-size: 20px;\n\t\t\tborder-radius: 5px;\n padding: 10px 20px 10px 20px;\n text-decoration: none;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: normal;\n\tfont-weight: bold;\n\ttext-decoration:none;\n\t \" href=\"[UNSUBSCRIBE]\">Descadastrar</a></center>\n\t\n <br />\n\t<br />\n\t<br />\n\n \n <!-- Header Ends -->\n <table width=\"650\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" valign=\"top\" align=\"center\" bgcolor=\"#ffffff\" style=\"border-left-width:1px;border-left-style:solid;border-left-color:#ebebeb;border-right-width:1px;border-right-style:solid;border-right-color:#ebebeb;background-color:#ffffff;width:650px;\">\n <tr>\n <td width=\"650\" height=\"37\" bgcolor=\"#000000\" align=\"center\" valign=\"middle\">\n\n <!-- Colocar o Link da Landing page com sua ETAG abaixo-->\n<a href=\"http://actualmanager.com/click.php?aspid=57e3097646d556ba82bbba0fffe64efa\" target=\"_blank\" name=\"link1\" style=\"color:#FFFFFF;font-family:Arial;font-size:12px;font-weight:bold;text-decoration:none;\">\n Coloque seu ingl&ecirc;s em campo - em Orlando!\n </a>\n </td>\n </tr>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td width=\"480\" height=\"74\" style=\"width:500px;line-height:74px;padding-top:0;padding-bottom:0;padding-right:20px;padding-left:20px;\">\n<!-- ALTERAR O LINK DA IMAGEM AQUI -->\n<img src=\"http://imagensinfo.com/englishtown/copa30/images/ef-et-white.png\" width=\"267\" height=\"35\" alt=\"EF Englishtown\" /> </td>\n <td width=\"190\" height=\"74\" style=\"width:190px;padding-right:10px;text-align:center;\">\n <table width=\"190\" align=\"center\" style=\"margin-right:10px;text-align:center;\">\n <tr>\n <td style=\"width:190px;height:30px;background-color:#fcc504;\">\n\n <!-- Colocar o Link da Landing page com sua ETAG abaixo-->\n<a href=\"http://actualmanager.com/click.php?aspid=57e3097646d556ba82bbba0fffe64efa\" name=\"link2\" target=\"_blank\" class=\"botaoAprender\" style=\"display:block;background-color:#fcc504;text-align:center;padding-top:10px;padding-bottom:10px;padding-right:0;padding-left:0;margin-top:0px;margin-bottom:0px;margin-right:0px;margin-left:0px;color:#266134;text-decoration:none;text-transform:uppercase;font-size:14px;font-weight:bold;width:190px;\">\n Saber mais\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;\">\n <table cellpadding=\"0\" cellspacing=\"0\" bgcolor=#ffffff>\n <tr>\n <td align=\"center\">\n\n <!-- Colocar o Link da Landing page com sua ETAG abaixo-->\n<a href=\"http://actualmanager.com/click.php?aspid=57e3097646d556ba82bbba0fffe64efa\" target=\"_blank\" name=\"link3\" style=\"text-decoration:none;\">\n\n <!-- ALTERAR O LINK DA IMAGEM AQUI -->\n <img src=\"http://imagensinfo.com/englishtown/copa30/images/copaamerica.jpg\" style=\"border:none; outline:none; color:#FFFFFF\" width=650 alt=\"A Englishtown quer ver seu ingl&ecirc;s em campo. Por isso, estamos com 30% desconto¹. Aproveite.\" />\n </a>\n </td>\n </tr>\n <tr>\n <td align=center>\n <table width=562 fgcolor=white style=\"margin: 20px;\">\n <tr>\n <td style=\"color:#154072; font-size:21px; text-align: center;\">\n Matricule-se j&aacute;, voc&ecirc; ainda concorre a <b>uma viagem para Orlando</b>&sup2; em junho para ver um jogo da sele&ccedil;&atilde;o.\n <br><br>\n Quer mais? Aqui, tem <b>Englishtown sem Crise</b>&sup3;: adiamos duas mensalidades caso precise se recolocar!\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"center\">\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"tableGuia\" style=\"background-color:#266134;text-align:center;padding-top:0px;padding-bottom:0px;padding-right:0;padding-left:0;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;color:#ffffff;text-decoration:none;text-transform:uppercase;font-size:14px;font-weight:bold;width:424px;height:40px;vertical-align:middle;\">\n <tr>\n <td style=\"width:424px;height:40px;vertical-align:middle;\">\n\n <!-- Colocar o Link da Landing page com sua ETAG abaixo-->\n<a href=\"http://actualmanager.com/click.php?aspid=57e3097646d556ba82bbba0fffe64efa\" name=\"link5\" target=\"_blank\" class=\"botaoGuia\" style=\"display:block;width:424px;font-family:arial;background-color:#266134;text-align:center;padding-top:10px;padding-bottom:10px;padding-right:0;padding-left:0;color:#ffffff;text-decoration:none;text-transform:uppercase;font-size:14px;font-weight:bold;\">\n Quero ir com a Englishtown para Orlando!\n </a>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td align=\"center\" style=\"padding-top:20px;padding-bottom:20px;padding-right:30px;padding-left:30px;font-size:12px;color:#154072;\">\n <small>\n &sup1;Desconto v&aacute;lido para alunos novos que fizerem a matr&iacute;cula pela primeira vez em um curso Private Teacher entre 15 e 30 de abril de 2016. &sup2;Promo&ccedil;&atilde;o v&aacute;lida para matr&iacute;culas realizadas de 01 de abril de 2016 a 26 de maio de 2016 no curso Private Teacher. Consulte o regulamento para saber mais. &sup3;Com o programa Englishtown sem crise, nossos alunos têm de três a seis meses de mensalidades postergadas em caso de desemprego, mediante apresentação de documento.\n </small>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-top:1px solid #ebebeb; border-bottom:1px solid #ebebeb; width:650px; \">\n <tr>\n <td width=\"200\" height=\"119\" style=\"width:200px;line-height:119px;padding-left:20px;\">\n\n<!-- ALTERAR O LINK DA IMAGEM AQUI -->\n<img src=\"http://imagensinfo.com/englishtown/copa30/images/ef-linkedin.png\" width=\"194\" height=\"100\" border=\"0\" alt=\"EF Linkedin\" />\n </td>\n <td width=\"200\" height=\"119\" style=\"width:200px;line-height:119px;\">\n\n<!-- ALTERAR O LINK DA IMAGEM AQUI -->\n<img src=\"http://imagensinfo.com/englishtown/copa30/images/ias.png\" width=\"194\" height=\"80\" border=\"0\" alt=\"Instituto Ayrton Senna\" style=\"border-left-width:1px;border-left-style:solid;border-left-color:#e1e1e1;border-right-width:1px;border-right-style:solid;border-right-color:#e1e1e1;margin-top:10px;\"/>\n </td>\n <td width=\"200\" height=\"119\" style=\"width:200px;line-height:119px;\">\n\n<!-- ALTERAR O LINK DA IMAGEM AQUI -->\n<img src=\"http://imagensinfo.com/englishtown/copa30/images/cbf-cob.png\" width=\"194\" height=\"100\" border=\"0\" alt=\"CBF e Rio2016\" />\n </td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n <br>\n <br>\n <br>\n <br>\n <br>\n <br>\n <br>\n <!-- Footer Begins -->\n <center>\n<table width=\"600\" border=\"0\" margin=\"auto\">\n <tbody>\n <tr style=\"width:540px; text-align:center; margin:auto;\">\n <td><p style=\"color: #FF161A;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 24px;\n\ttext-shadow: 1px 2px 5px;\">A Boa do Dia - Informa&ccedil;&otilde;es legais</p></td>\n </tr>\n\n\n <tr>\n <td><span style=\"color: grey;\n\tfont-family: Lucida Grande, Lucida Sans Unicode, Lucida Sans, DejaVu Sans, Verdana, sans-serif;\n\tfont-style: italic;\n\tfont-size: 10px;\n\ttext-align:justify;\">Conforme &agrave; lei de Liberdades e Inform&aacute;tica, voc&ecirc; tem direito de cancelar, modificar, atualizar e acessar suas informa&ccedil;&otilde;es quando quiser !<br />\n <br />\n A Boa do Dia &eacute; editado por Crova Media: 27, Rue Avaul&eacute;e - 92240 - Malakoff - Fran&ccedil;a\n <br />\n RCS Nanterre 802254284\n <br />\n Voc&ecirc; pode nos escrever &agrave; qualquer momento no endere&ccedil;o acima ou pelo email: contato@qualaboa.net !\n\t\n \n </td>\n </tr>\n </tbody>\n</table></center> \n<img src=\"http://actualmanager.com/print.php?aspid=102674\" width=\"1\" height=\"1\" border=\"0\" alt=\"0\" /></body>\n\n</html>\n"], ["entered", "2016-04-25"], ["modified", "2016-04-28"], ["status", "Sent"], ["sent", 6012], ["remaining", 0], ["listid", "[33, 34, 75]"], ["exclude_list", "[5, 14, 37, 80, 81, 84, 85, 60]"], ["scheduled_date", "2016-04-30"], ["filter", "[{\"search\"=>{\"listid.id\"=>{\"$nin\"=>[5, 14, 37, 80, 81, 84, 85, 60], \"$in\"=>[33, 34, 75]}, \"deleteAt\"=>{\"$exists\"=>false}}, \"segment_data\"=>[], \"match\"=>\"or\", \"new\"=>\"true\", \"segments_query_txt\"=>nil, \"type\"=>false}]"], ["tags", "Englishtown ativos actual sales ALL"], ["header", "EXISTS"], ["footer", "EXISTS"], ["from_name", "EF Englishtown - A Boa do Dia !"], ["from_email", ""], ["form_name", ""], ["reply_to", "contato@qualaboa.net"], ["delivered", 5961], ["unique_views", 871], ["viewed", 1165], ["clicked", 9], ["clicker", 8], ["hard_bounce", 1], ["soft_bounce", 50], ["unsub", 7], ["mirror_click", 6], ["complaints", 4], ["to_field", ""], ["share_link", 0], ["stats_by_domain", "{\"yahoo.com.br\":{\"sent\":2328,\"delivered\":2327,\"viewed\":463,\"clicked\":2,\"hard_bounce\":0,\"unsub\":2,\"complaints\":3,\"unique_views\":366,\"unique_clicks\":1,\"soft_bounces\":1},\"ig.com.br\":{\"sent\":63,\"delivered\":62,\"viewed\":1,\"clicked\":0,\"hard_bounce\":1,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"gmail.com\":{\"sent\":1353,\"delivered\":1353,\"viewed\":340,\"clicked\":2,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":227,\"unique_clicks\":2,\"soft_bounces\":0},\"yahoo.com\":{\"sent\":97,\"delivered\":97,\"viewed\":35,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":1,\"unique_views\":22,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com\":{\"sent\":655,\"delivered\":655,\"viewed\":84,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":76,\"unique_clicks\":1,\"soft_bounces\":0},\"usp.br\":{\"sent\":5,\"delivered\":5,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":9,\"delivered\":9,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":742,\"delivered\":742,\"viewed\":97,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":73,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com\":{\"sent\":49,\"delivered\":49,\"viewed\":6,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":1,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":39,\"delivered\":39,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":19,\"delivered\":19,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":41,\"delivered\":41,\"viewed\":7,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":48,\"delivered\":48,\"viewed\":13,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":12,\"unique_clicks\":0,\"soft_bounces\":0},\"uol.com.br\":{\"sent\":249,\"delivered\":249,\"viewed\":68,\"clicked\":1,\"hard_bounce\":0,\"unsub\":3,\"complaints\":0,\"unique_views\":50,\"unique_clicks\":1,\"soft_bounces\":0},\"live.com\":{\"sent\":25,\"delivered\":25,\"viewed\":6,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":24,\"delivered\":24,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":35,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":35},\"brturbo.com.br\":{\"sent\":5,\"delivered\":5,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"msn.com\":{\"sent\":2,\"delivered\":2,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":10,\"delivered\":8,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":2},\"rocketmail.com\":{\"sent\":6,\"delivered\":6,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"itelefonica.com.br\":{\"sent\":4,\"delivered\":null,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":4},\"sanepar.com.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:33.277573"], ["id", 135]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "135"]]
(0.2ms) BEGIN
SQL (0.9ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "135"], ["created_at", "2016-06-12 12:31:33.294400"], ["updated_at", "2016-06-12 12:31:33.294400"]]
(0.1ms) ROLLBACK
Completed 500 Internal Server Error in 26548ms (ActiveRecord: 1337.9ms)
ActiveRecord::RecordNotUnique (PG::UniqueViolation: ERROR: duplicate key value violates unique constraint "shoots_pkey"
DETAIL: Key (id)=(136) already exists.
: INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"):
app/controllers/monet_controller.rb:53:in `block in fetch'
app/controllers/monet_controller.rb:52:in `map'
app/controllers/monet_controller.rb:52:in `each'
app/controllers/monet_controller.rb:52:in `fetch'
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.6ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.7ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.2ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.3ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (12.2ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.5ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (26.2ms)
Started GET "/monet/fetch" for 127.0.0.1 at 2016-06-12 14:31:33 +0200
Processing by MonetController#fetch as HTML
Shoot Load (1.0ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "280"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.460869"], ["id", 280]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "279"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.480297"], ["id", 279]]
(3.9ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "277"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.500538"], ["id", 277]]
(23.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "276"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.541050"], ["id", 276]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "275"]]
(0.2ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "unique_views" = $1, "viewed" = $2, "share_link" = $3, "stats_by_domain" = $4, "updated_at" = $5 WHERE "shoots"."id" = $6 [["unique_views", 1964], ["viewed", 2548], ["share_link", 0], ["stats_by_domain", "{\"hotmail.com\":{\"sent\":1838,\"delivered\":1838,\"viewed\":174,\"clicked\":39,\"hard_bounce\":0,\"unsub\":2,\"complaints\":0,\"unique_views\":141,\"unique_clicks\":30,\"soft_bounces\":0},\"bol.com.br\":{\"sent\":2148,\"delivered\":2148,\"viewed\":173,\"clicked\":25,\"hard_bounce\":0,\"unsub\":4,\"complaints\":0,\"unique_views\":132,\"unique_clicks\":16,\"soft_bounces\":1},\"uol.com.br\":{\"sent\":856,\"delivered\":856,\"viewed\":97,\"clicked\":11,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":78,\"unique_clicks\":11,\"soft_bounces\":0},\"gmail.com\":{\"sent\":4419,\"delivered\":4419,\"viewed\":844,\"clicked\":117,\"hard_bounce\":0,\"unsub\":20,\"complaints\":0,\"unique_views\":637,\"unique_clicks\":85,\"soft_bounces\":0},\"yahoo.com.br\":{\"sent\":12262,\"delivered\":12261,\"viewed\":1171,\"clicked\":96,\"hard_bounce\":0,\"unsub\":26,\"complaints\":1,\"unique_views\":897,\"unique_clicks\":73,\"soft_bounces\":3},\"yahoo.com\":{\"sent\":255,\"delivered\":255,\"viewed\":6,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":6,\"unique_clicks\":0,\"soft_bounces\":0},\"globomail.com\":{\"sent\":37,\"delivered\":37,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ymail.com\":{\"sent\":216,\"delivered\":216,\"viewed\":15,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":15,\"unique_clicks\":1,\"soft_bounces\":0},\"terra.com.br\":{\"sent\":141,\"delivered\":55,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":86},\"msn.com\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ig.com.br\":{\"sent\":140,\"delivered\":140,\"viewed\":4,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":1,\"soft_bounces\":0},\"mail.com\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"oi.com.br\":{\"sent\":103,\"delivered\":103,\"viewed\":5,\"clicked\":0,\"hard_bounce\":0,\"unsub\":1,\"complaints\":0,\"unique_views\":4,\"unique_clicks\":0,\"soft_bounces\":0},\"live.com\":{\"sent\":16,\"delivered\":16,\"viewed\":3,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":3,\"unique_clicks\":0,\"soft_bounces\":0},\"brturbo.com.br\":{\"sent\":10,\"delivered\":10,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"hotmail.com.br\":{\"sent\":28,\"delivered\":28,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"sercomtel.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"icloud.com\":{\"sent\":84,\"delivered\":24,\"viewed\":7,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":7,\"unique_clicks\":0,\"soft_bounces\":60},\"outlook.com\":{\"sent\":112,\"delivered\":112,\"viewed\":7,\"clicked\":1,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":7,\"unique_clicks\":1,\"soft_bounces\":0},\"outlook.com.br\":{\"sent\":7,\"delivered\":7,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"globo.com\":{\"sent\":74,\"delivered\":74,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"ibest.com.br\":{\"sent\":14,\"delivered\":14,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"ufpr.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"zipmail.com.br\":{\"sent\":36,\"delivered\":36,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"rocketmail.com\":{\"sent\":13,\"delivered\":13,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"superig.com.br\":{\"sent\":19,\"delivered\":19,\"viewed\":2,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":2,\"unique_clicks\":0,\"soft_bounces\":0},\"prefeitura.sp.gov.br\":{\"sent\":4,\"delivered\":4,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"convex.com.br\":{\"sent\":2,\"delivered\":2,\"viewed\":1,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":1,\"unique_clicks\":0,\"soft_bounces\":0},\"unochapeco.edu.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"usp.br\":{\"sent\":12,\"delivered\":12,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"sanepar.com.br\":{\"sent\":3,\"delivered\":3,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"claro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"uel.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"agricultura.gov.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0},\"iclaro.com.br\":{\"sent\":1,\"delivered\":1,\"viewed\":0,\"clicked\":0,\"hard_bounce\":0,\"unsub\":0,\"complaints\":0,\"unique_views\":0,\"unique_clicks\":0,\"soft_bounces\":0}}"], ["updated_at", "2016-06-12 12:31:40.564169"], ["id", 275]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "274"]]
(0.2ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.585223"], ["id", 274]]
(4.1ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "273"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.631872"], ["id", 273]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "272"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.654231"], ["id", 272]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "271"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.676531"], ["id", 271]]
(4.0ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "270"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.692879"], ["id", 270]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "269"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.709947"], ["id", 269]]
(4.0ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "268"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.730971"], ["id", 268]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "267"]]
(0.2ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.754989"], ["id", 267]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "266"]]
(0.3ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.778821"], ["id", 266]]
(5.5ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "265"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.801974"], ["id", 265]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "264"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.825895"], ["id", 264]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "263"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.847568"], ["id", 263]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "262"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.870179"], ["id", 262]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "260"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.890141"], ["id", 260]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "259"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.910306"], ["id", 259]]
(4.0ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "258"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.930516"], ["id", 258]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "257"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.949257"], ["id", 257]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "256"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.968875"], ["id", 256]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "255"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:40.988058"], ["id", 255]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "254"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.008063"], ["id", 254]]
(4.0ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "253"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.028926"], ["id", 253]]
(4.3ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "251"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.049056"], ["id", 251]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "250"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.068917"], ["id", 250]]
(4.2ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "249"]]
(0.3ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.088680"], ["id", 249]]
(4.1ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "248"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.107772"], ["id", 248]]
(4.0ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "247"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.127419"], ["id", 247]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "246"]]
(0.2ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.149109"], ["id", 246]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "243"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.174258"], ["id", 243]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "242"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.196814"], ["id", 242]]
(4.0ms) COMMIT
Shoot Load (0.8ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "241"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.218173"], ["id", 241]]
(3.9ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "240"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.237485"], ["id", 240]]
(3.9ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "239"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.258572"], ["id", 239]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "238"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.280098"], ["id", 238]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "237"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.298423"], ["id", 237]]
(4.3ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "236"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.316686"], ["id", 236]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "235"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.338686"], ["id", 235]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "234"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.360406"], ["id", 234]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "233"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.378758"], ["id", 233]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "232"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.398454"], ["id", 232]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "231"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.418859"], ["id", 231]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "230"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.437693"], ["id", 230]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "229"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.460002"], ["id", 229]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "228"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.480004"], ["id", 228]]
(3.9ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "227"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.499871"], ["id", 227]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "226"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.538791"], ["id", 226]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "225"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.562288"], ["id", 225]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "224"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.582203"], ["id", 224]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "223"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.601030"], ["id", 223]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "222"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.619658"], ["id", 222]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "221"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.639813"], ["id", 221]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "220"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.660015"], ["id", 220]]
(4.1ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "219"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.679168"], ["id", 219]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "218"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.697403"], ["id", 218]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "217"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.718231"], ["id", 217]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "216"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.737263"], ["id", 216]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "215"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.758982"], ["id", 215]]
(3.9ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "214"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.779855"], ["id", 214]]
(4.2ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "213"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.798968"], ["id", 213]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "212"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.813330"], ["id", 212]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "211"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.851319"], ["id", 211]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "210"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.873258"], ["id", 210]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "209"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.893922"], ["id", 209]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "208"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.916604"], ["id", 208]]
(4.3ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "207"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.941447"], ["id", 207]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "206"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.964816"], ["id", 206]]
(4.3ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "205"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:41.986321"], ["id", 205]]
(4.0ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "204"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.007876"], ["id", 204]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "203"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.032900"], ["id", 203]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "202"]]
(0.2ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.056763"], ["id", 202]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "201"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.073990"], ["id", 201]]
(3.9ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "200"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.089974"], ["id", 200]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "198"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.110255"], ["id", 198]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "197"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.131307"], ["id", 197]]
(4.0ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "196"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.152810"], ["id", 196]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "195"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.174294"], ["id", 195]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "194"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.196425"], ["id", 194]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "193"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.215399"], ["id", 193]]
(3.9ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "192"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.234375"], ["id", 192]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "191"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.256285"], ["id", 191]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "190"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.276313"], ["id", 190]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "189"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.295336"], ["id", 189]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "188"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.314478"], ["id", 188]]
(4.2ms) COMMIT
Shoot Load (0.8ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "187"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.334963"], ["id", 187]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "186"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.354483"], ["id", 186]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "185"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.377263"], ["id", 185]]
(4.0ms) COMMIT
Shoot Load (0.7ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "184"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.401125"], ["id", 184]]
(4.2ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "183"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.423251"], ["id", 183]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "182"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.443692"], ["id", 182]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "181"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.465994"], ["id", 181]]
(4.2ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "180"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.488777"], ["id", 180]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "179"]]
(0.1ms) BEGIN
SQL (0.7ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.509856"], ["id", 179]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "178"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.532913"], ["id", 178]]
(3.9ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "177"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.553435"], ["id", 177]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "176"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.576068"], ["id", 176]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "174"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.597291"], ["id", 174]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "173"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.621385"], ["id", 173]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "172"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.643649"], ["id", 172]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "171"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.663529"], ["id", 171]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "170"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.685250"], ["id", 170]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "169"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.705583"], ["id", 169]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "168"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.725842"], ["id", 168]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "167"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.745166"], ["id", 167]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "166"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.765102"], ["id", 166]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "165"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.788557"], ["id", 165]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "164"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.807829"], ["id", 164]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "163"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.826091"], ["id", 163]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "162"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.840757"], ["id", 162]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "161"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.858038"], ["id", 161]]
(4.1ms) COMMIT
Shoot Load (0.8ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "160"]]
(0.2ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.880977"], ["id", 160]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "158"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.905371"], ["id", 158]]
(4.1ms) COMMIT
Shoot Load (0.9ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "157"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.925704"], ["id", 157]]
(4.2ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "156"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.945998"], ["id", 156]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "155"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.965173"], ["id", 155]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "154"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:42.984626"], ["id", 154]]
(4.2ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "153"]]
(0.2ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.001713"], ["id", 153]]
(3.9ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "152"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.018685"], ["id", 152]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "151"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.035113"], ["id", 151]]
(4.0ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "150"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.054198"], ["id", 150]]
(4.0ms) COMMIT
Shoot Load (0.6ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "149"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.073519"], ["id", 149]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "148"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.091049"], ["id", 148]]
(4.3ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "146"]]
(0.2ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.109787"], ["id", 146]]
(4.1ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "145"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.129419"], ["id", 145]]
(4.3ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "144"]]
(0.1ms) BEGIN
SQL (0.5ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.148775"], ["id", 144]]
(4.0ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "143"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.169873"], ["id", 143]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "142"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.190005"], ["id", 142]]
(4.0ms) COMMIT
Shoot Load (1.2ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "141"]]
(0.2ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.208945"], ["id", 141]]
(6.7ms) COMMIT
Shoot Load (0.5ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "140"]]
(0.1ms) BEGIN
SQL (0.2ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.228177"], ["id", 140]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "138"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.247004"], ["id", 138]]
(4.0ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "137"]]
(0.1ms) BEGIN
SQL (0.4ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.265213"], ["id", 137]]
(4.1ms) COMMIT
Shoot Load (0.4ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "136"]]
(0.1ms) BEGIN
SQL (0.3ms) UPDATE "shoots" SET "share_link" = $1, "updated_at" = $2 WHERE "shoots"."id" = $3 [["share_link", 0], ["updated_at", "2016-06-12 12:31:43.285455"], ["id", 136]]
(4.1ms) COMMIT
Shoot Load (0.3ms) SELECT "shoots".* FROM "shoots" WHERE "shoots"."campaign_id" = $1 LIMIT 1 [["campaign_id", "135"]]
(0.1ms) BEGIN
SQL (0.7ms) INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["campaign_id", "135"], ["created_at", "2016-06-12 12:31:43.296700"], ["updated_at", "2016-06-12 12:31:43.296700"]]
(0.1ms) ROLLBACK
Completed 500 Internal Server Error in 9849ms (ActiveRecord: 692.3ms)
ActiveRecord::RecordNotUnique (PG::UniqueViolation: ERROR: duplicate key value violates unique constraint "shoots_pkey"
DETAIL: Key (id)=(137) already exists.
: INSERT INTO "shoots" ("campaign_id", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id"):
app/controllers/monet_controller.rb:53:in `block in fetch'
app/controllers/monet_controller.rb:52:in `map'
app/controllers/monet_controller.rb:52:in `each'
app/controllers/monet_controller.rb:52:in `fetch'
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
Rendered /var/lib/gems/2.3.0/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.7ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/_markup.html.erb (0.4ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/_inner_console_markup.html.erb within layouts/inlined_string (0.2ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/_prompt_box_markup.html.erb within layouts/inlined_string (0.3ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/style.css.erb within layouts/inlined_string (0.5ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/console.js.erb within layouts/javascript (13.4ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/main.js.erb within layouts/javascript (0.2ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/error_page.js.erb within layouts/javascript (0.3ms)
Rendered /var/lib/gems/2.3.0/gems/web-console-2.3.0/lib/web_console/templates/index.html.erb (26.6ms)
create_table "shoots", force: :cascade do |t|
t.string "campaign_id"
t.string "campaign_name"
t.string "subject"
t.string "bat_sent"
t.string "type"
t.string "html_content"
t.date "entered"
t.date "modified"
t.string "status"
t.integer "sent"
t.integer "remaining"
t.string "listid"
t.string "exclude_list"
t.json "stats_by_domain"
t.date "scheduled_date"
t.string "filter"
t.string "tags"
t.string "header"
t.string "footer"
t.string "to_field"
t.string "from_name"
t.string "from_email"
t.string "form_name"
t.string "reply_to"
t.integer "delivered"
t.integer "unique_views"
t.integer "viewed"
t.integer "clicked"
t.integer "clicker"
t.integer "hard_bounce"
t.integer "soft_bounce"
t.integer "unsub"
t.integer "mirror_click"
t.integer "complaints"
t.integer "links_message"
t.integer "share_link"
t.integer "payout"
t.integer "ecpm"
t.integer "turnover"
t.integer "cost"
t.integer "margin"
t.integer "result"
t.integer "roi"
t.string "name"
t.string "segment"
t.string "deal"
t.string "partner"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment