NewsBlur-viq/apps/newsletters/views.py
2024-04-24 09:50:42 -04:00

74 lines
109 KiB
Python

from pprint import pprint
from django.conf import settings
from django.http import Http404, HttpResponse
from apps.newsletters.models import EmailNewsletter
from apps.rss_feeds.models import Feed, MStory
from utils import log as logging
def newsletter_receive(request):
"""
This function is called by mailgun's receive email feature. This is a
private API used for the newsletter app.
"""
# params = {
# 'stripped-signature':'Thanks,\nBob',
# 'From':'Test mailer <samuel@ofbrooklyn.com>',
# 'attachment-count':'2',
# 'To':'Alice <alice@newsletters.newsblur.com>',
# 'subject':'Test Newsletter The Skimm',
# 'from':'Test mailer <samuel@ofbrooklyn.com>',
# 'User-Agent':'Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4',
# 'stripped-html':'<html><head><meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"></head><body text="#000000" bgcolor="#FFFFFF">\n <div class="moz-cite-prefix">\n <div style="color: rgb(34, 34, 34); font-family: arial,\n sans-serif; font-size: 12.666666984558105px; font-style: normal;\n font-variant: normal; font-weight: normal; letter-spacing:\n normal; line-height: normal; orphans: auto; text-align: start;\n text-indent: 0px; text-transform: none; white-space: normal;\n widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto;\n -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,\n 255);">Hi Alice,</div>\n <div style="color: rgb(34, 34, 34); font-family: arial,\n sans-serif; font-size: 12.666666984558105px; font-style: normal;\n font-variant: normal; font-weight: normal; letter-spacing:\n normal; line-height: normal; orphans: auto; text-align: start;\n text-indent: 0px; text-transform: none; white-space: normal;\n widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto;\n -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,\n 255);"><br></div>\n <div style="color: rgb(34, 34, 34); font-family: arial,\n sans-serif; font-size: 12.666666984558105px; font-style: normal;\n font-variant: normal; font-weight: normal; letter-spacing:\n normal; line-height: normal; orphans: auto; text-align: start;\n text-indent: 0px; text-transform: none; white-space: normal;\n widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto;\n -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,\n 255);">This is Bob.<span class="Apple-converted-space">&#160;<img alt="" src="cid:part1.04060802.06030207@newsletters.newsblur.com" height="15" width="33"></span></div>\n <div style="color: rgb(34, 34, 34); font-family: arial,\n sans-serif; font-size: 12.666666984558105px; font-style: normal;\n font-variant: normal; font-weight: normal; letter-spacing:\n normal; line-height: normal; orphans: auto; text-align: start;\n text-indent: 0px; text-transform: none; white-space: normal;\n widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto;\n -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,\n 255);"><br>\n I also attached a file.<br><br></div>\n <div style="color: rgb(34, 34, 34); font-family: arial,\n sans-serif; font-size: 12.666666984558105px; font-style: normal;\n font-variant: normal; font-weight: normal; letter-spacing:\n normal; line-height: normal; orphans: auto; text-align: start;\n text-indent: 0px; text-transform: none; white-space: normal;\n widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto;\n -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,\n 255);">Thanks,</div>\n <div style="color: rgb(34, 34, 34); font-family: arial,\n sans-serif; font-size: 12.666666984558105px; font-style: normal;\n font-variant: normal; font-weight: normal; letter-spacing:\n normal; line-height: normal; orphans: auto; text-align: start;\n text-indent: 0px; text-transform: none; white-space: normal;\n widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto;\n -webkit-text-stroke-width: 0px; background-color: rgb(255, 255,\n 255);">Bob</div>\n <br><br></div>\n <br></body></html>',
# 'In-Reply-To':'<517AC78B.5060404@newsletters.newsblur.com>',
# 'Date':'Fri, 26 Apr 2013 11:50:29 -0700',
# 'Message-Id':'<517ACC75.5010709@newsletters.newsblur.com>',
# 'body-plain':'Hi Alice,\n\nThis is Bob.\n\nI also attached a file.\n\nThanks,\nBob\n\nOn 04/26/2013 11:29 AM, Alice wrote:\n> Hi Bob,\n>\n> This is Alice. How are you doing?\n>\n> Thanks,\n> Alice\n\n',
# 'Mime-Version':'1.0',
# 'Received':'from [10.20.76.69] (Unknown [50.56.129.169]) by mxa.mailgun.org with ESMTP id 517acc75.4b341f0-worker2; Fri, 26 Apr 2013 18:50:29 -0000 (UTC)',
# 'content-id-map':'{"<part1.04060802.06030207@newsletters.newsblur.com>": "attachment-1"}',
# 'Sender':'bob@newsletters.newsblur.com',
# 'timestamp':'1455054990',
# 'message-headers':'[["Received", "by luna.mailgun.net with SMTP mgrt 8788212249833; Fri, 26 Apr 2013 18:50:30 +0000"], ["Received", "from [10.20.76.69] (Unknown [50.56.129.169]) by mxa.mailgun.org with ESMTP id 517acc75.4b341f0-worker2; Fri, 26 Apr 2013 18:50:29 -0000 (UTC)"], ["Message-Id", "<517ACC75.5010709@newsletters.newsblur.com>"], ["Date", "Fri, 26 Apr 2013 11:50:29 -0700"], ["From", "Test mailer <samuel@ofbrooklyn.com>"], ["User-Agent", "Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130308 Thunderbird/17.0.4"], ["Mime-Version", "1.0"], ["To", "Alice <alice@newsletters.newsblur.com>"], ["Subject", "Re: Sample POST request"], ["References", "<517AC78B.5060404@newsletters.newsblur.com>"], ["In-Reply-To", "<517AC78B.5060404@newsletters.newsblur.com>"], ["X-Mailgun-Variables", "{\\"my_var_1\\": \\"Mailgun Variable #1\\", \\"my-var-2\\": \\"awesome\\"}"], ["Content-Type", "multipart/mixed; boundary=\\"------------020601070403020003080006\\""], ["Sender", "bob@newsletters.newsblur.com"]]',
# 'stripped-text':'Hi Alice,\n\nThis is Bob.\n\nI also attached a file.',
# 'recipient':'samuel-555551235342@newsletters.newsblur.com',
# 'sender':'samuel@ofbrooklyn.com',
# 'X-Mailgun-Variables':'{"my_var_1": "Mailgun Variable #1", "my-var-2": "awesome"}',
# 'token':'cb2ef40ca2fee03a099f7da78ca07384228f00f023026c77a4',
# 'body-html':"""\r\n\r\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\r\n<html>\r\n <head>\r\n <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">\r\n <!-- Responsive Design -->\r\n <!-- Facebook sharing information tags -->\r\n <img src="http://click.morning7.theskimm.com/open.aspx?ffcb10-ff2d11787561-fe8b1d737d6d077c76-fe881372756c027a7c-ff9d1670-fe8c1d737d6c067d70-fefc15727c6502" width="1" height="1">\r\n <meta property="og:image" content="http://cdn.theskimm.com/assets/skimm-fb-logo.png">\r\n <meta name="viewport" content="width=device-width">\r\n\r\n <style type="text/css">\r\n body{\r\n color:#000 !important;\r\n }\r\n p.skimm-p a,a,a:link,a:hover,a:visited{\r\n color:#009f9c!important;\r\n text-decoration:none;\r\n }\r\n a:hover{\r\n text-decoration:underline;\r\n }\r\n p{\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-size:15px;\r\n line-height:20px;\r\n letter-spacing:0em;\r\n color:#000;\r\n margin:0;\r\n padding:0;\r\n }\r\n #logo{\r\n text-decoration:none;\r\n display:block;\r\n padding-top:18px;\r\n margin:0 auto;\r\n }\r\n #missed{\r\n padding:34px 0;\r\n }\r\n #missed p{\r\n text-align:center;\r\n padding:0 0 3px;\r\n font-size:14px;\r\n }\r\n #sharing{\r\n padding:24px 0 32px;\r\n margin:0 auto 35px;\r\n background:#009f9b;\r\n width:100%;\r\n }\r\n #sharing h2{\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-weight:bold;\r\n text-transform:uppercase;\r\n text-align:center;\r\n letter-spacing:0.28em;\r\n padding:0 0 24px;\r\n margin:0;\r\n font-style:normal;\r\n font-size:13px;\r\n color:#fff;\r\n }\r\n #sharing .share_icons{\r\n margin:0 auto;\r\n text-align:center;\r\n }\r\n #sharing .share_icons .share{\r\n display:inline-block;\r\n text-transform:uppercase;\r\n color:#fff;\r\n text-decoration:none;\r\n text-align:center;\r\n margin-right:15px;\r\n }\r\n #sharing .share_icons .share img{\r\n display:block;\r\n font-size:28px;\r\n margin:0 auto 10px;\r\n }\r\n #sharing .share_icons span:last-child .share:last-child{\r\n margin-left:7px;\r\n }\r\n #sharing .share_icons .share:last-child img{\r\n margin:0 auto 8px;\r\n }\r\n #sharing .share_icons .share span{\r\n display:block;\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-size:11px;\r\n font-weight:bold;\r\n letter-spacing:3px;\r\n }\r\n .img_el{\r\n margin:0 auto 22px;\r\n display:block;\r\n }\r\n .retinaonlyicon{\r\n width:46px;\r\n height:49px;\r\n }\r\n .theskimm{\r\n text-transform:none !important;\r\n }\r\n #rss-content p,#rss-content h1,#rss-content h2,#rss-content h3,#rss-content img,#rss-content hr{\r\n margin-left:auto;\r\n margin-right:auto;\r\n }\r\n .skimm-birthdays,.skimm-shareus,.skimm-gift,.skimm-life{\r\n padding-bottom:15px !important;\r\n }\r\n .skimm-h3.skimm-shareus{\r\n background:url(http://cdn.theskimm.com/email/3/normal/skimmsend_icon.png) no-repeat 50% 0;\r\n text-align:center;\r\n padding-top:50px;\r\n margin-top:20px;\r\n }\r\n .skimm-p{\r\n line-height:23px;\r\n color:#000;\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-size:16px;\r\n padding-bottom:15px !important;\r\n }\r\n .share-jumpto-links{\r\n margin-top:0px !important;\r\n margin-bottom:12px !important;\r\n margin-left:auto;\r\n margin-right:auto;\r\n }\r\n .skimm-h1{\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-size:22px !important;\r\n font-weight:bold;\r\n color:#000;\r\n border-bottom:3px solid #00A49F;\r\n padding:12px 0 !important;\r\n margin-top:8px;\r\n margin-bottom:24px;\r\n\r\n text-align:left;\r\n letter-spacing:0.08em;\r\n }\r\n .skimm-h2{\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-weight:bold;\r\n font-size:20px;\r\n letter-spacing:0.01em;\r\n color:#000;\r\n padding:0 0 0 0;\r\n margin-top:22px;\r\n margin-bottom:12px;\r\n text-align:left;\r\n }\r\n .skimm-h3{\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-weight:bold !important;\r\n font-size:15px;\r\n letter-spacing:0.15em;\r\n line-height:20px;\r\n color:#000;\r\n padding:0;\r\n margin-bottom:4px;\r\n text-align:left;\r\n }\r\n .skimm-h3.skimm-h3-quote{\r\n text-align:left;\r\n }\r\n .skimm-h3.skimm-birthdays{\r\n text-align:center;\r\n margin-top:20px;\r\n }\r\n .skimm-h3.skimm-life{\r\n text-align:center;\r\n margin-top:20px;\r\n }\r\n .skimm-h3.skimm-gift{\r\n text-align:center;\r\n margin-top:20px;\r\n }\r\n .skimm-hr{\r\n border:0;\r\n margin-bottom:0 !important;\r\n }\r\n .skimm-hr.skimm-hr-thick{\r\n border-top:3px solid #009f9c !important;\r\n background:none !important;\r\n margin-bottom:25px !important;\r\n }\r\n .skimm-hr.skimm-hr-thin{\r\n border-top:1px solid #bfbfbf !important;\r\n height:0 !important;\r\n background:#fff !important;\r\n margin-bottom:20px !important;\r\n }\r\n .skimm-hr.skimm-hr-thin.skimm-hr-teal{\r\n border-top:1px solid #009f9c !important;\r\n }\r\n #outlook a{\r\n padding:0;\r\n }\r\n body{\r\n width:100% !important;\r\n }\r\n .ReadMsgBody{\r\n width:100%;\r\n }\r\n .ExternalClass{\r\n width:100%;\r\n }\r\n body{\r\n -webkit-text-size-adjust:none;\r\n }\r\n body{\r\n margin:0;\r\n padding:0;\r\n }\r\n img{\r\n border:none;\r\n height:auto;\r\n line-height:100%;\r\n margin:0;\r\n outline:none;\r\n padding:0;\r\n text-decoration:none;\r\n }\r\n #backgroundTable{\r\n margin:0;\r\n padding:0;\r\n width:100% !important;\r\n }\r\n /*\r\n @tab Page\r\n @section background color\r\n @tip Set the background color for your email. You may want to choose one that matches your company\'s branding.\r\n @theme page\r\n */\r\n body,#backgroundTable{\r\n /*@editable*/background-color:#ffffff;\r\n }\r\n /*\r\n @tab Page\r\n @section heading 1\r\n @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.\r\n @style heading 1\r\n */\r\n h1,.h1{\r\n /*@editable*/color:#202020;\r\n display:block;\r\n /*@editable*/font-family:Helvetica,Arial,sans-serif;\r\n /*@editable*/font-size:32px;\r\n /*@editable*/font-weight:bold;\r\n /*@editable*/line-height:100%;\r\n margin-top:0;\r\n margin-right:0;\r\n margin-bottom:10px;\r\n margin-left:0;\r\n /*@editable*/text-align:left;\r\n }\r\n /*\r\n @tab Page\r\n @section heading 2\r\n @tip Set the styling for all second-level headings in your emails.\r\n @style heading 2\r\n */\r\n h2,.h2{\r\n /*@editable*/color:#303030;\r\n display:block;\r\n /*@editable*/font-family:Helvetica,Arial,sans-serif;\r\n /*@editable*/font-size:26px;\r\n /*@editable*/font-weight:bold;\r\n /*@editable*/line-height:100%;\r\n margin-top:0;\r\n margin-right:0;\r\n margin-bottom:10px;\r\n margin-left:0;\r\n padding-bottom:6px;\r\n /*@editable*/text-align:left;\r\n }\r\n /*\r\n @tab Page\r\n @section heading 3\r\n @tip Set the styling for all third-level headings in your emails.\r\n @style heading 3\r\n */\r\n h3,.h3{\r\n /*@editable*/color:#404040;\r\n display:block;\r\n /*@editable*/font-family:Helvetica,Arial,sans-serif;\r\n /*@editable*/font-size:22px;\r\n /*@editable*/font-weight:bold;\r\n /*@editable*/line-height:100%;\r\n margin-top:0;\r\n margin-right:0;\r\n margin-bottom:10px;\r\n margin-left:0;\r\n /*@editable*/text-align:left;\r\n }\r\n /*\r\n @tab Page\r\n @section heading 4\r\n @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.\r\n @style heading 4\r\n */\r\n h4,.h4{\r\n /*@editable*/color:#505050;\r\n display:block;\r\n /*@editable*/font-family:Helvetica,Arial,sans-serif;\r\n /*@editable*/font-size:18px;\r\n /*@editable*/font-weight:bold;\r\n /*@editable*/line-height:100%;\r\n margin-top:0;\r\n margin-right:0;\r\n margin-bottom:10px;\r\n margin-left:0;\r\n /*@editable*/text-align:left;\r\n }\r\n /*\r\n @tab Header\r\n @section preheader style\r\n @tip Set the background color for your email\'s preheader area.\r\n @theme page\r\n */\r\n #templatePreheader{\r\n /*@editable*/background-color:#ffffff;\r\n }\r\n /*\r\n @tab Header\r\n @section preheader text\r\n @tip Set the styling for your email\'s preheader text. Choose a size and color that is easy to read.\r\n */\r\n .preheaderContent{\r\n /*@tab Header\r\n@section preheader text\r\n@tip Set the styling for your email\'s preheader text. Choose a size and color that is easy to read.*/border-bottom:3px solid #000;\r\n }\r\n .preheaderContent div{\r\n /*@editable*/color:#505050;\r\n /*@editable*/font-family:Helvetica,Arial,sans-serif;\r\n /*@editable*/font-size:10px;\r\n /*@editable*/line-height:100%;\r\n /*@editable*/text-align:center;\r\n }\r\n /*\r\n @tab Header\r\n @section preheader link\r\n @tip Set the styling for your email\'s preheader links. Choose a color that helps them stand out from your text.\r\n */\r\n .preheaderContent div a:link,.preheaderContent div a:visited,.preheaderContent div a .yshortcuts{\r\n /*@editable*/color:#009f9c !important;\r\n /*@editable*/font-weight:normal;\r\n /*@editable*/text-decoration:underline;\r\n }\r\n /*\r\n @tab Header\r\n @section header style\r\n @tip Set the background color and border for your email\'s header area.\r\n\r\n @theme header\r\n */\r\n #templateHeader{\r\n /*@editable*/background-color:#ffffff;\r\n /*@editable*/border-bottom:0;\r\n padding:0px;\r\n }\r\n /*\r\n @tab Body\r\n @section body style\r\n @tip Set the background color for your email\'s body area.\r\n */\r\n #templateContainer,.bodyContent{\r\n /*@editable*/background-color:#FFFFFF;\r\n }\r\n #sharing-cells{\r\n margin-top:15px;\r\n }\r\n #sharing-cells td{\r\n width:50%;\r\n padding:0 8px;\r\n }\r\n #sharing-cells td:first-child{\r\n padding-left:0;\r\n }\r\n #sharing-cells td:last-child{\r\n padding-right:0;\r\n }\r\n #sharing-cells a:link,#sharing-cells a:visited,#sharing-cells a{\r\n display:block;\r\n height:22px;\r\n line-height:22px;\r\n background:#009f9c;\r\n position:relative;\r\n color:#ffffff;\r\n text-decoration:none;\r\n font-family:Helvetica,Arial,sans-serif;\r\n font-size:13px;\r\n font-weight:bold;\r\n }\r\n #sharing-cells img{\r\n position:relative;\r\n margin-left:10px;\r\n }\r\n #sharing-cells .header-email-img{\r\n top:1px;\r\n }\r\n #sharing-cells .header-twitter-img{\r\n top:1px;\r\n }\r\n #sharing-cells .header-facebook-img{\r\n top:2px;\r\n }\r\n /*\r\n @tab Body\r\n @section body text\r\n @tip Set the styling for your email\'s main content text. Choose a size and color that is easy to read.\r\n @theme main\r\n */\r\n .bodyContent{\r\n /*@tab Body\r\n@section body text\r\n@tip Set the styling for your email\'s main content text. Choose a size and color that is easy to read.\r\n@theme main*/text-align:left;\r\n }\r\n .bodyContent p{\r\n margin:0 auto;\r\n padding-bottom:26px;\r\n font-size:14px;\r\n text-align:left;\r\n }\r\n .bodyContent p strong{\r\n font-weight:bold;\r\n }\r\n .bodyContent hr{\r\n height:3px;\r\n background:#000;\r\n border-top:0;\r\n border-bottom:0;\r\n border-left:0;\r\n border-right:0;\r\n width:145px;\r\n margin-bottom:25px;\r\n }\r\n /*\r\n @tab Footer\r\n @section footer style\r\n @tip Set the background color and top border for your email\'s footer area.\r\n @theme footer\r\n */\r\n #templateFooter{\r\n /*@editable*/background-color:#FFFFFF;\r\n /*@editable*/border-top:0;\r\n }\r\n /*\r\n @tab Footer\r\n @section footer text\r\n @tip Set the styling for your email\'s footer text. Choose a size and color that is easy to read.\r\n @theme footer\r\n */\r\n .footerContent div{\r\n /*@tab Footer\r\n@section footer text\r\n@tip Set the styling for your email\'s footer text. Choose a size and color that is easy to read.\r\n@theme footer*/font-size:12px;\r\n font-family:Helvetica,Arial,sans-serif;\r\n }\r\n /*\r\n @tab Footer\r\n @section footer link\r\n @tip Set the styling for your email\'s footer links. Choose a color that helps them stand out from your text.\r\n */\r\n .footerContent div p,.footerContent div a:link,.footerContent div a:visited,.footerContent div a .yshortcuts{\r\n /*@tab Footer\r\n@section footer link\r\n@tip Set the styling for your email\'s footer links. Choose a color that helps them stand out from your text.*/text-align:left;\r\n font-size:12px;\r\n }\r\n .footerContent img{\r\n display:inline;\r\n }\r\n #footerContentLeft a,#monkeyRewards a{\r\n color:#009f9c;\r\n text-decoration:none;\r\n }\r\n /*\r\n @tab Footer\r\n @section social bar style\r\n @tip Set the background color and border for your email\'s footer social bar.\r\n @theme footer\r\n */\r\n #social{\r\n /*@editable*/background-color:#FAFAFA;\r\n /*@editable*/border:0;\r\n }\r\n /*\r\n @tab Footer\r\n @section social bar style\r\n @tip Set the background color and border for your email\'s footer social bar.\r\n */\r\n #social div{\r\n /*@editable*/text-align:center;\r\n }\r\n /*\r\n @tab Footer\r\n @section utility bar style\r\n @tip Set the background color and border for your email\'s footer utility bar.\r\n @theme footer\r\n */\r\n #utility{\r\n /*@editable*/background-color:#FFFFFF;\r\n /*@editable*/border:0;\r\n }\r\n /*\r\n @tab Footer\r\n @section utility bar style\r\n @tip Set the background color and border for your email\'s footer utility bar.\r\n */\r\n #utility div{\r\n /*@editable*/text-align:center;\r\n }\r\n #monkeyRewards img{\r\n max-width:190px;\r\n }\r\n .headerContent a{\r\n color:#000000;\r\n text-decoration:none;\r\n }\r\n .headerContent p{\r\n font-weight:bold;\r\n }\r\n @media only screen and (max-width: 675px),\r\n (-webkit-min-device-pixel-ratio: 1.5),\r\n (min-resolution: 144dpi) and (device-width: 1080px) and (orientation: portrait),\r\n (-webkit-min-device-pixel-ratio: 3.0){\r\n body,table,td,p,a,li,blockquote{\r\n -webkit-text-size-adjust:none !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n table[id=templatePreheader],table[id=templateContainer],table[id=templateHeader],table[id=templateBody],table[id=templateFooter],table[id=innerTemplateContainer],.skimm-shareus-bg{\r\n width:100% !important;\r\n margin:0 !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n table[id=templatePreheader] td,table[id=templateContainer] td,table[id=templateHeader] td,table[id=templateBody] td,table[id=templateFooter] td,table[id=innerTemplateContainer] td,.skimm-shareus-bg{\r\n padding-left:0 !important;\r\n padding-right:0 !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing-cells{\r\n width:100% !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing-cells a{\r\n height:35px !important;\r\n line-height:35px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing-cells a span{\r\n display:none;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing-cells td{\r\n width:50% !important;\r\n padding:0 2px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing-cells td:first-child{\r\n padding-left:0 !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing-cells td:last-child{\r\n padding-right:0 !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n .preheaderContent div{\r\n font-size:14px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n .preheaderContent a{\r\n display:block;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #rss-content p,#rss-content h1,#rss-content h2,#rss-content h3,#rss-content hr,.skimm-shareus-bg,.share-jumpto-links{\r\n margin-left:5px !important;\r\n margin-right:5px !important;\r\n width:auto !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #missed p span{\r\n display:block;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing h2{\r\n font-size:13px !important;\r\n padding-bottom:15px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing .share_icons .share{\r\n margin-right:3px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #sharing .share_icons span{\r\n display:block;\r\n margin-bottom:15px;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #footerContentLeft,#monkeyRewards{\r\n width:100% !important;\r\n display:block !important;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n #footerContentLeft{\r\n margin-bottom:15px;\r\n }\r\n\r\n} @media only screen and (max-width: 675px){\r\n .skimm-shareus-bg{\r\n padding-left:5px !important;\r\n padding-right:5px !important;\r\n }\r\n\r\n} #outlook a{\r\n padding:0;\r\n }\r\n body{\r\n width:100% !important;\r\n -webkit-text-size-adjust:100%;\r\n -ms-text-size-adjust:100%;\r\n margin:0;\r\n padding:0;\r\n }\r\n .ExternalClass{\r\n width:100%;\r\n }\r\n .ExternalClass,.ExternalClass p,.ExternalClass span,.ExternalClass font,.ExternalClass td,.ExternalClass div{\r\n line-height:100%;\r\n }\r\n .ecxfacebook span,.ecxtwitter span{\r\n padding-right:10px!important;\r\n }\r\n a.ecxshare span{\r\n padding:10px 0!important;\r\n }\r\n a.ecxshare img{\r\n display:inline-block!important;\r\n }\r\n #backgroundTable{\r\n margin:0;\r\n padding:0;\r\n width:100% !important;\r\n line-height:100% !important;\r\n }\r\n img{\r\n outline:none;\r\n text-decoration:none;\r\n border:none;\r\n -ms-interpolation-mode:bicubic;\r\n }\r\n a img{\r\n border:none;\r\n }\r\n .image_fix{\r\n display:block;\r\n }\r\n p{\r\n margin:0px 0px !important;\r\n }\r\n table td{\r\n border-collapse:collapse;\r\n }\r\n table{\r\n border-collapse:collapse;\r\n mso-table-lspace:0pt;\r\n mso-table-rspace:0pt;\r\n }\r\n a{\r\n color:#009f9c !important;\r\n text-decoration:none!important;\r\n }\r\n table[class=full]{\r\n width:100%;\r\n clear:both;\r\n }\r\n @media only screen and (max-width: 640px){\r\n a[href^=tel],a[href^=sms]{\r\n text-decoration:none;\r\n color:#009f9c;\r\n cursor:default;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n .mobile_link a[href^=tel],.mobile_link a[href^=sms]{\r\n text-decoration:default;\r\n color:#009f9c !important;\r\n pointer-events:auto;\r\n cursor:default;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n table[class=devicewidth]{\r\n width:440px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n td[class=devicewidth]{\r\n width:440px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n img[class=devicewidth]{\r\n width:440px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n img[class=banner]{\r\n width:440px!important;\r\n height:147px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n table[class=devicewidthinner]{\r\n width:420px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n img[class=devicewidthinner]{\r\n width:420px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n table[class=icontext]{\r\n width:345px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n img[class=colimg2]{\r\n width:420px!important;\r\n height:243px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n table[class=emhide]{\r\n display:none!important;\r\n }\r\n\r\n} @media only screen and (max-width: 640px){\r\n img[class=logo]{\r\n width:425px!important;\r\n height:198px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n a[href^=tel],a[href^=sms]{\r\n text-decoration:none;\r\n color:#009f9c;\r\n cursor:default;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n .mobile_link a[href^=tel],.mobile_link a[href^=sms]{\r\n text-decoration:default;\r\n color:#009f9c !important;\r\n pointer-events:auto;\r\n cursor:default;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n table[class=devicewidth]{\r\n width:300px!important;\r\n min-width:300px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n td[class=devicewidth]{\r\n width:300px!important;\r\n min-width:300px!important;\r\n text-align:left!important;\r\n font-size:14px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n p[class=skimm-p]{\r\n width:300px!important;\r\n min-width:300px!important;\r\n text-align:left!important;\r\n font-size:16px!important;\r\n line-height:22px!important;\r\n padding-bottom:20px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n img[class=banner]{\r\n width:300px!important;\r\n height:93px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n table[class=devicewidthinner]{\r\n width:300px!important;\r\n min-width:300px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n table[class=icontext]{\r\n width:186px!important;\r\n text-align:left!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n img[class=colimg2]{\r\n width:260px!important;\r\n height:150px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n table[class=emhide]{\r\n display:none!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n img[class=logo]{\r\n width:300px!important;\r\n height:140px!important;\r\n margin:0 auto;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .mobile-block{\r\n display:block !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .share-column-top{\r\n padding:12px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .bullet{\r\n display:block !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .email-title{\r\n text-align:center !important;\r\n min-width:300px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .share-header{\r\n min-width:300px!important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .share-facebook-and-twitter{\r\n text-align:center !important;\r\n min-width:320px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n body[yahoofix] .share-tumblr-instagram-pinterest{\r\n text-align:center !important;\r\n min-width:320px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n table[id=canspamBar] td{\r\n font-size:14px !important;\r\n }\r\n\r\n} @media only screen and (max-width: 480px){\r\n table[id=canspamBar] td a{\r\n display:block !important;\r\n margin-top:10px !important;\r\n }\r\n\r\n}</style></head>\r\n<custom type="content" name="feed">\r\n<body yahoofix="">\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="2"></td>\r\n </tr>\r\n <tr>\r\n <td width="100%" align="center" valign="middle" style="font-family: Helvetica, arial, sans-serif; font-size: 10px;color:#222222;padding:10px;">\r\n <img src="https://knifeopen.com/open?key=tbXNJbs7ktiOLQaM&e=c2FtdWVsQG9mYnJvb2tseW4uY29t" border="0" width="1" height="1" style="height:1px !important; width:1px !important; border: 0 !important; margin: 0 !important; padding: 0 !important; overflow:hidden !important">\r\n Is this email not displaying correctly?\r\n <a href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496682b8c2a8ce3b89f149c3b0e3d4bb79d27aff69849d4262d99cf9ca3edc7323ac8fb26da3883ad2171" target="_blank" style="color: #009f9c !important; text-decoration: none" class="mobile-block">View it in your browser.</a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="2"></td>\r\n </tr>\r\n <tr bgcolor="#202020">\r\n <td width="100%" height="3"></td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr valign="middle">\r\n <td width="49%" style="max-width:305px;font-family: \'Helvetica\', \'Arial\', sans-serif; font-size: 14px; font-weight: normal; hyphens: auto; padding:14px;" bgcolor="#009f9c" valign="middle" class="share-column-top">\r\n <a class="twitter" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668355d8e9df63905f97725a44ebbed84a874deecd217e78c40b34e726327df44f0239bc0801dc2b0a2" style="color: #fff !important; display: block; font-size: 14px; font-weight: bold; text-align: center; text-decoration: none"><span style="">SHARE THIS</span><img class="header-twitter-img" src="http://cdn.theskimm.com/email/3/retina/header_twitter.png" width="17" height="12" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: inline-block; float: none; margin-left: 10px; max-width: 100%; outline: none; position: relative; text-decoration: none;left:5px;" align="none"></a>\r\n </td>\r\n <td width="2%" style="max-width:10px;"></td>\r\n <td width="49%" style="max-width:305px;font-family: \'Helvetica\', \'Arial\', sans-serif; font-size: 14px; font-weight: normal; hyphens: auto; padding:14px;" bgcolor="#009f9c" valign="middle" class="share-column-top">\r\n <a class="facebook" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496685aa05331be5024f7d4c5b6ac5a6644628ee1fabfd4fe5d99dd2a1927cc9c0ad3eb9b788f0307a8a7" style="color: #fff !important; display: block; font-size: 14px; font-weight: bold; text-align: center; text-decoration: none"><span style="">SHARE THIS</span><img class="header-facebook-img" src="http://cdn.theskimm.com/email/3/retina/header_facebook.png" width="5" height="12" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: inline-block; float: none; margin-left: 10px; max-width: 100%; outline: none; position: relative; text-decoration: none; left:5px;" align="none"></a>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="21"></td>\r\n </tr>\r\n <tr>\r\n <td width="100%" align="center">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td align="center" class="email-title-logo">\r\n\t\t\t <a target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966896ba0fd9aa0d6f5e516a15a2e8e7ca1be07d2a3ef5e4a4db879fb260ad995c5a"><img width="500" border="0" height="233" alt="" style="display:block; border:none; outline:none; text-decoration:none;" src="http://cdn.theskimm.com/email/3/retina/preflight/logo_dunkin_skimm_20161116.png" class="logo"></a> </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="22"></td>\r\n </tr>\r\n <tr>\r\n <td align="center" style="color: #222222;font-family: \'Helvetica\', \'Arial\', sans-serif; font-size: 18px;font-weight: bold;min-width: 320px; width: 100%" class="email-title">\r\n Skimm for November 16th\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="22"></td>\r\n </tr>\r\n <tr>\r\n <td align="center">\r\n <a target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496682d0eeaaeae295fc27f0d5cd22756d2ae4e78e57151c1d5809d4b42d2bb2d7f888666b29c176b6dbc"><img height="40" width="205" border="0" alt="" style="display:block; border:none; outline:none;text-decoration:none;" src="http://cdn.theskimm.com/email/3/retina/inviteCTA.png"></a>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="30"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n Skimm&#8217;d at Friendsgiving with coffee that tastes like your fav baked goods. <a href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668c3bcc1d0e3afbff63b0279170e2c2fdf703c9bb1b8cf3fc642c83a0de5dd0603" target="_blank">Drink up here.</a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="20"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="font-family: Helvetica, arial, sans-serif; font-size: 15px; font-weight:bold; color: #000000; text-align:left;line-height: 20px; letter-spacing:0.15em;" class="title">\r\n QUOTE OF THE DAY\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p">&#8220;What up, peach butt?&#8221; - <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496689a95679d7cee905acd1bd6bb4f9a114a6ad0a607c7a8bc4ef0cabc958cf2fb32" target="_blank">One person&#8217;s reaction</a>&#160;to Apple bringing back the OG peach emoji. Because the Internet loves big peaches and it cannot lie.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links"><div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966833128e1dee0ee6de0affe606e7df71c41589a66347535625737e36f7002c2293"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496681a9f9e0c2b717ffcd0ff065052083ef574492f42d19003343a16417b51d1c5e2"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n <a style="width: 20px; height: 25px; vertical-align: bottom; margin: 5px 5px 0; display: inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668b45e2f0e181622f538351d174b653e094d53348383175ae22951ea3fbee530ce"><img src="http://cdn.theskimm.com/email/3/retina/icon_share_instagram.png" style="display: block; vertical-align: middle; padding-top: 0px; margin: 0 auto !important;" width="20" height="20" alt="Insta This" /></a>\r\n </div>\r\n </div></div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="font-family: Helvetica, arial, sans-serif; font-size: 24px; font-weight:bold; color: #000000; text-align:left;line-height: 24px; letter-spacing:2px;">\r\n\r\n <h1 class=\'skimm-h1\' id=\'top-story\' style=\'font-size:24px!important;font-weight:bold;color:#000;border-bottom:3px solid #00A49F;padding:12px0!important;margin-top:8px;margin-bottom:24px;text-rendering:geometricPrecision;text-align:left;letter-spacing:0.08em;\'>FAKE \'N BAKE</h1> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-weight:bold;font-size:20px;letter-spacing:0.01em;color:#000;padding:0000;padding-bottom:12px;text-align:left;">\r\n </td>\r\n </tr>\r\n <!--skimmPH:[top-story]--> <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <h3 class="skimm-h3">THE STORY</h3>\r\n<p class="skimm-p">Facebook and Google are trying to stop certain websites from <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966894872e7112c671ca9489ec768e9d7be63adbec52357289184ab96c9153b3ab14" target="_blank">faking it</a>.</p>\r\n<h3 class="skimm-h3">WAIT&#8230;BACK UP.</h3>\r\n<p class="skimm-p">During and after the presidential election, there were a lot of fake news articles floating around the Interwebs - especially on <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496688d33e8875fc47a70828b52f21ce18b16d6ca6e40c32a4c6ab593567f2558b134" target="_blank">Google</a> and <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966814079903a573fec91cd595e7f4fa59d0d41663992c83703541adb93ed58e1c38" target="_blank">Facebook</a>. See: stories on Facebook claiming that <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966866dabb649428b6ca61f14367bf10578571a081deb7e3cc0502dc984cbdfef003" target="_blank">Pope Francis</a> and <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668e44d7b4019f39666965810830390f69939c80af4e0f1a248c34b51b96652e035" target="_blank">Denzel Washington</a> had endorsed Donald Trump. False. Also see: a news story <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668cb9a811eb752f96911cdbb07cd8a98905e44e20e74cb959d1114dbe83d98ef4e" target="_blank">leading Google&#8217;s search results</a> claiming that Trump had won the popular vote. Again, false.</p>\r\n<h3 class="skimm-p skimm-h3">HOW DID THIS HAPPEN?</h3>\r\n<p class="skimm-p">Both Google and Facebook use algorithms to decide what people see in their search results and News Feeds. And<span style="color: #000000;">&#160;people</span>&#160;are more likely to see websites and stories that are already getting attention. During this election, people were apparently clicking a lot on attention grabbing - but fake - stories. So Google and Facebook have been got a lot of side <span style="color: #000000;">eye&#160;for maybe&#160;helping spread false news that misled&#160;voters.</span></p>\r\n<h3 class="skimm-h3">SO WHAT NOW?</h3>\r\n<p class="skimm-p">Earlier this week, both tech companies said they&#8217;re banning fake news sites from using their ad platforms. Hint: tools that help other websites make some cash money&#160;by filling ad spaces on their pages. So this move could hit fake sites where it hurts&#8230;their bank accounts. But these actions won&#8217;t actually stop fake stories from showing up in search results and News Feeds. So, problem not solved.</p>\r\n<h3 class="skimm-h3">theSKIMM</h3>\r\n<p class="skimm-p">Turns out your grandma&#160;who always says &#8216;don&#8217;t believe what you read on the Internet&#8217; is onto something. The issue is that lately, it&#8217;s been getting harder to tell fact from fiction. Think of Google and Facebook&#8217;s moves as baby steps in the right direction.</p>\r\n<p class="skimm-p"><strong>THE *:</strong> Twitter&#8217;s also battling some demons. Yesterday it announced a new <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496686dea1ff5bcde88085c4fcc1fe0a5cd5707ea931fadf2af7aafcbae5ccae6c656" target="_blank">&#8216;mute&#8217;</a> button for hate speech that can be used to block trolls. Slow. Clap.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links" style="margin-top:0px!important;margin-bottom:12px!important;margin-left:auto;margin-right:auto;">\r\n <div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668fee71bbd266055643382d3a550d47f2bee4932d14c28394bdeb627d14637cefa"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668b2b2e5ca3b4277a55656ba4dd5e178387d3067c2526c327fcd86d2b2a1f56afe"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n </div>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td>\r\n\r\n <h1 class=\'skimm-h1\' style=\'font-size:24px!important;font-weight:bold;color:#000;border-bottom:3px solid #00A49F;padding:12px0!important;margin-top:8px;margin-bottom:24px;text-rendering:geometricPrecision;text-align:left;letter-spacing:0.08em;\'>REPEAT AFTER ME...</h1> </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h3 class="skimm-h3"><span style="color: #000000;">WHAT TO SAY TO YOUR FRIEND </span><span style="color: #000000;">WHO&#160;OVERUSES THE FLOWER CROWN FILTER&#8230;</span></h3>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p"><span id="m_-8610233401664684211gmail-m_4406734970754570424gmail-m_8170365571861193419gmail-m_3032498056971523395gmail-docs-internal-guid-81c14444-6b4b-35ce-5787-3b1660046764" style="color: #000000;">Big news. Yesterday, it came out that <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668e687db272906e8193de881a3ac4d328b971b252b9ba902707af67356f9a1b057" target="_blank">Snapchat</a> -&#160;aka Snap Inc. - reportedly filed to go public. The Dancing Ghost could start trading shares as soon as March next year. And be valued at around $25 billion. That would make it one of the largest IPOs since Alibaba went public in 2014 for more than $170 billion. Not bad for a company that once said &#8216;as if&#8217; to a $3 billion takeover bid from Facebook. Now, the app known for high-pitched deer voices and major key has more than 100 million active users</span><span style="color: #000000;">.</span><span style="color: #000000;"> </span><span style="color: #000000;">Snapchat&#8217;s not sending any disappearing comments confirming or denying these reports.&#160;For now.</span></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links" style="margin-top:0px!important;margin-bottom:12px!important;margin-left:auto;margin-right:auto;">\r\n <div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668a22029c811fe912cbcaa55e4c7690f941dfb6205e6e5d8384839006d04e1fca5"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966868ad7e11670909ba84b405df77932786cebaf2a1c73f1fb069bcb399601b9878"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n </div>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h3 class="skimm-h3">WHAT TO SAY WHEN DECIDING BETWEEN TAKEOUT AND LEFTOVERS&#8230;</h3>\r\n<h3 class="skimm-h3"></h3>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p">Decisions, decisions. DC&#8217;s making a lot of those too. Yesterday, House Republicans <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668a15574a3921755c32d9019545f192c33f350169a723a31a9835d8a6afb98d856" target="_blank">re-nominated Rep. Paul Ryan (R-WI)</a>&#160;for House Speaker. So he&#8217;ll continue as the voice of the GOP in Congress when President-elect Donald Trump takes over the White House. Ryan and Trump <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668ad715d9dbd396cf40f08831a4c53e5e1aba451d50f8ae9e7a80c8e4912c8894d" target="_blank">haven&#8217;t been huge fans</a> of each other in the past, so this could be fun. Meanwhile, House Dems are in &#8216;reassess&#8217; mode since last week&#8217;s election upset. Yesterday, they <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668ca9fcce12ba859dafbd313a3021f96f605f9805d5f9695dcac7b59508873838f" target="_blank">postponed an election for House Minority Leader</a> until the end of the month. So it&#8217;s unclear whether current leader Rep. Nancy Pelosi (D-CA) will get to keep her job, which she&#8217;s had for more than a decade. Speaking of jobs, some of Trump&#8217;s <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966890467bfeb8316cfc343f6be84933493e97b133a509207bd311408f1ad7b4b2b2" target="_blank">transition team</a> members don&#8217;t have one anymore. Yesterday, two aides that were helping with national security and foreign policy were pushed out. One of them reportedly over his close ties to NJ Gov. Chris Christie - who was recently demoted from his own transition team job - and his <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668759d0f85d61c9bd91740d3ffd680756d942049f438826d9dde2f04b4425f74f2" target="_blank">bridge full of problems.</a> VP-elect Mike Pence is heading everything up now. And he has a lot of open positions to fill on the US gov&#8217;s website.&#160;Bueller&#8230;?</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links" style="margin-top:0px!important;margin-bottom:12px!important;margin-left:auto;margin-right:auto;">\r\n <div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668eb047e0045b064327cf993f88c43d8f1f7fd142ba4c3730ee11e619a005b8135"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966893f90884d2e283822d36b8328fea527e796862be805d266f161a939c47f16e81"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n </div>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h3 class="skimm-h3">WHAT TO SAY TO YOUR FRIEND WHO <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966838f2c2bf9f1ad12d3ee7669be439b5753af2413b197148ea933a4842d1bf559f" target="_blank">&#8216;CHECKED IN&#8217; TO STANDING ROCK ON FB</a>&#8230;</h3>\r\n<h3 class="skimm-h3"></h3>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p">And the story continues. Earlier this week, the company building the Dakota Access Pipeline <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668587be35d0420e3b300f4b7f20ffa641fdca8fffe4d4bab68aafaf2bff32b3d96" target="_blank">asked a federal court to step in</a> and give them the green light to finish the project. That&#8217;s because the US gov recently <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668e6e37e03e89776ee26a111a229ce6e6c99051c298370a97ad1e28502591249f0" target="_blank">put off making a decision</a> about whether pipeline construction could continue near a Native American reservation in North Dakota. Reminder: The Dakota Access Pipeline is a more than 1,000 mile-long oil pipeline that would run through four states. Native Americans and environmentalists have spent months protesting the project in North Dakota, saying it could contaminate the water supply of a nearby tribe and demolish sacred sites. The tribe filed a lawsuit, and after a lot of legal back-and-forth, the project&#8217;s been put on hold by the Obama administration. Now, the pipeline company&#8217;s saying delays have cost about $100 million and it&#8217;s &#8216;time to get this show on the road.&#8217; Meanwhile critics are saying &#8216;nope, fight&#8217;s not over.&#8217; Yesterday, hundreds of people protested in cities across the US.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links" style="margin-top:0px!important;margin-bottom:12px!important;margin-left:auto;margin-right:auto;">\r\n <div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668e60bf549785af95fd2eecd1c223477cdd64d73be224af43546f4250719165c2e"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496687558f10a661cf02787cc0382fa1746b257f8c50406fe109cae8e80477a4249eb"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n </div>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <h3 class="skimm-h3">WHAT TO SAY WHEN YOU&#160;FIND A HAIR IN YOUR SOUP...</h3>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p">That&#8217;s nothing. <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496682fcd1f9b9aecfa2a7f592838f5083fa8cc4de5ea878f7540239e79545d837620" target="_blank">Really.</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links" style="margin-top:0px!important;margin-bottom:12px!important;margin-left:auto;margin-right:auto;">\r\n <div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668f7756a67344bc84f4633e55ffce21c8650b0fba307a821a868594bcd5e1128f8"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966896eb0d1c6f010fe5ac0be20cf13bedffe9d223f6e63009deb8c7c9ffe8baf42c"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n </div>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="0"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h1 class="skimm-h1" style="font-size:24px!important;font-weight:bold;color:#000;border-bottom:3px solid #00A49F;padding:12px0!important;margin-top:8px;margin-bottom:24px;text-rendering:geometricPrecision;text-align:left;letter-spacing:0.08em;">THING TO KNOW</h1>\r\n </td>\r\n </tr>\r\n <!--skimmPH:[skimm-thing-to-know-THING TO KNOW]--> <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p"><strong><a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668c78d2d0af98be16bad76c055a8f44143371f5f10237bd7b536cbb1903e3e7419" target="_blank">Young Joe Biden:</a></strong> A picture of Vice President Joe Biden. When he was younger. And really, really, really, ridiculously good looking. And when &#8216;malarkey&#8217; might have worked in a pickup line.</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <div class="share-jumpto-links" style="margin-top:0px!important;margin-bottom:12px!important;margin-left:auto;margin-right:auto;">\r\n <div style="box-sizing:border-box;position:relative;height:45px;">\r\n <div style="padding:0;overflow:hidden;color:#009f9c;font-family:\'Raleway\',sans-serif;font-weight:800;font-size: 12px;text-transform: uppercase;line-height: 30px;letter-spacing: 0.28em;text-align:left;">\r\n <span style="display:inline-block;margin-right:6px;">Skimm This</span><a style="width:20px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668968ba54c6c8358c8bfff15e59d5e6b874f5ff6e1970b16b22ce6fa5aaaceebe5"><img src="http://cdn.theskimm.com/email/3/retina/logo_facebook_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:0 auto !important;" width="10" height="24" alt="Like Us" /></a><a style="width:30px;height:30px;vertical-align:bottom;margin: 0 5px 0;display:inline-block;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668a2502b4fe990c36cdb3ef4020551c926382324cef782c7fba68f85ed0ba845e9"><img src="http://cdn.theskimm.com/email/3/retina/logo_twitter_teal.png" style="display:block;vertical-align:middle;padding-top:0px;margin:4px auto 0 !important;" width="25" height="19" alt="Tweet with Us" /></a>\r\n </div>\r\n </div>\r\n </div>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="0"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <img width="42" height="50" src="http://cdn.theskimm.com/email/3/retina/skimmlife_icon.png" border="0" style="border:none;min-height:auto;line-height:100%;margin:0 auto 22px;outline:none;padding:0;text-decoration:none;display:block;margin-left:auto;margin-right:auto">\r\n <h3 style="text-transform:uppercase;color:#000;display:block;font-family:Helvetica,Arial,sans-serif;font-size:15px;font-weight:bold!important;line-height:20px;margin-top:20px;margin-right:auto;margin-bottom:4px;margin-left:auto;text-align:center;letter-spacing:0.15em;padding:0;padding-bottom:15px!important">SKIMM LIFE</h3>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="text-align:left!important;margin:0 auto!important;max-width:595px" cellpadding="0" cellspacing="0" border="0" align="left">\r\n <tbody>\r\n <tr>\r\n <td width="100%" align="center" valign="middle">\r\n <img src="http://cdn.theskimm.com/email/3/retina/brought-to-you-by-Casper.png" width="300" height="28" border="0" style="border:none;min-height:auto;line-height:100%;margin:0;outline:none;padding:0;text-decoration:none">\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="10"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr> <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p class="skimm-p">Pillow talk just got a lot more comfortable. Meet your new mattress that will make it extra hard to get out of bed. $50 off included. Get it&#160;<a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966807a19aaf9c299ce80282cd4d859990644edf2f8879fac889f7ff73a7439f9cc8" target="_blank">here</a>.</p>\r\n<p>&nbsp;</p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="20"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <h3 style="text-transform:uppercase;color:#000;display:block;font-family:Helvetica,Arial,sans-serif;font-size:15px;font-weight:bold!important;line-height:20px;margin-top:20px;margin-right:auto;margin-bottom:4px;margin-left:auto;text-align:center;letter-spacing:0.15em;padding:0;padding-bottom:15px!important">SKIMM SHARE</h3>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="text-align:left!important;margin:0 auto!important;max-width:595px" cellpadding="0" cellspacing="0" border="0" align="left">\r\n <tbody>\r\n <tr>\r\n <td width="100%" align="center" valign="middle">\r\n <img src="http://cdn.theskimm.com/email/3/retina/brought-to-you-by-Feed.png" width="300" height="28" border="0" style="border:none;min-height:auto;line-height:100%;margin:0;outline:none;padding:0;text-decoration:none">\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="10"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr> <tr>\r\n <td class="share-button-copy" style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p dir="ltr" style="color: #222222;" class="skimm-p">Thanksgiving comin&#8217; in hot. We want it to be all gravy for you - and kids around the world. Say hi to <span style="color: #0000ff;"><a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668addb3e5e53489ee3fc0128aa9e26256520e3877f670bc283030c7d5610a2b9e3" target="_blank">FEED</a></span>. They&#8217;re dedicated to fighting world hunger, and we think you should help.</p>\r\n<p dir="ltr" style="color: #222222;" class="skimm-p">So here&#8217;s what we&#8217;re thinking&#8230;</p>\r\n<p dir="ltr" style="color: #222222;" class="skimm-p">* From now through <span class="aBn" data-term="goog_696035946" tabindex="0"><span class="aQJ">Thursday</span></span>, every time you share theSkimm, FEED will donate a meal to a child in need</p>\r\n<p dir="ltr" style="color: #222222;" class="skimm-p">* You can share here, or using your referral link</p>\r\n<p class="skimm-p">* Your referral link: <a href="https://www.theskimm.com/?r=65f2f865" target="_blank" style="color:#009f9c!important;text-decoration:none;">https://www.theskimm.com/?r=65f2f865</a></p><p \r\n<p dir="ltr" style="color: #222222;" class="skimm-p">Questions? Here are your <a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=d763cee0c4487653768c25cc7c9dfc78a3f38477994c7fd430c4408bcf0de925f9376680fc6eeae6" target="_blank">answers.</a></p>\r\n<p dir="ltr" style="color: #222222;" class="skimm-p">\r\n </td>\r\n </tr>\r\n <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;text-align:center;">\r\n <a style="color:#009f9c!important;text-decoration:none;" href="http://www.theskimm.com/invite/v2/new?email=samuel@ofbrooklyn.com&utm_source=email&utm_medium=invite&utm_campaign=bottom" target="_blank"><img src="https://cdn.theskimm.com/email/3/retina/badge_share-the-skimm.png" width="100" height="100" alt="Share theSkimm" /></a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="50"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="0"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:600px;" align="center" cellpadding="0" cellspacing="0" border="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <img width="36" height="39" src="http://cdn.theskimm.com/email/3/retina/skimmbirthdays_icon.png" border="0" style="border:none;min-height:auto;line-height:100%;margin:0 auto 22px;outline:none;padding:0;text-decoration:none;display:block;margin-left:auto;margin-right:auto">\r\n <h3 style="text-transform:uppercase;color:#000;display:block;font-family:Helvetica,Arial,sans-serif;font-size:15px;font-weight:bold!important;line-height:20px;margin-top:20px;margin-right:auto;margin-bottom:4px;margin-left:auto;text-align:center;letter-spacing:0.15em;padding:0;padding-bottom:15px!important">SKIMM BIRTHDAYS</h3>\r\n </td>\r\n </tr>\r\n <!--skimmPH:[skimm-birthdays-SKIMM BIRTHDAYS]--> <tr>\r\n <td style="font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:20px;letter-spacing:0em;color:#000;margin:0;padding:0;">\r\n <p style="color: #222222;" class="skimm-p"><b><a style="color:#009f9c!important;text-decoration:none;" href="http://click.morning7.theskimm.com/?qs=d763cee0c4487653a10d863e3c54ce20da1bd1b22c5fbb9859fa75c263a7640bbb41ea283e5eba90" target="_blank">* indicates Skimm&#8217;bassador.</a>&#160;Go big.</b></p>\r\n<div style="color: #222222;">\r\n<p class="skimm-p"><b><span style="color: #222222;">Trish Engleman </span></b><span style="color: #222222;">(New York, NY); <strong>Sarah Finn</strong> (New York, NY);</span><b><span style="color: #222222;">&#160;</span>*Jackie O&#8217;Shaughnessy&#160;</b>(Chapel Hill, NC);&#160;<b>*Gabriella Rossi</b>&#160;(New York, NY);&#160;<b>*Jenna Levy&#160;</b>(Baltimore, MD);&#160;<b>*Allison Wynant&#160;</b>(North Potomac, MD);&#160;<b>*Heather Modicut&#160;</b>(Loranger, LA);&#160;<b>*Mirela Raic&#160;</b>(Dubai, UAE);&#160;<b>*Heather McCowen</b>&#160;(Chicago, IL);&#160;<b>*Kimberly Novosel&#160;</b>(Nashville, TN);&#160;<b>*Armand Mignot</b>&#160;(Boston, MA);&#160;<b>*Beth Zentmeyer-Harvey&#160;</b>(Tampa, FL);&#160;<b>*Sue Fannin&#160;</b>(Greensboro, NC);&#160;<b>*Sokphal Tun&#160;</b>(Arlington, VA);&#160;<b>*Mary Augustine-Morris</b>&#160;(New York, NY);&#160;<b>*Lisa Watkins</b>&#160;(Austin, TX);&#160;<b>*Alexandra Perrault&#160;</b>(Cincinnati, OH);&#160;<b>*Courtney Crotty</b>&#160;(Glendale, CO);&#160;<b>*Keri Robinson&#160;</b>(Highland, NY);&#160;<b>*Rachel Gold&#160;</b>(Denver, CO);&#160;<b>Caitriona Brannigan&#160;</b>(Dresher, PA);&#160;<b>Jessica Reagan</b>&#160;(Cary, NC);&#160;<b>Rachael Drake&#160;</b>(Covington, KY);&#160;<b>Abbie Gabel&#160;</b>(Lincoln, NE);&#160;<b>Sarah Catherine Norris</b>&#160;(Dallas, TX);&#160;<b>Erika Sorensen</b>&#160;(West Fargo, ND);&#160;<b>Laurie Crane</b>&#160;(Augusta, GA);&#160;<strong>Alli Fleder&#160;</strong>(New York, NY);&#160;<b>Brenna Delk</b>&#160;(Houston, TX);&#160;<b>Mary A McKay</b>&#160;(Lubbock, TX);&#160;<b>Melissa Gay&#160;</b>(Chicago, IL);&#160;<strong>Susanne Erni</strong> (Atlanta, GA);&#160;<b>Shayla Castrelos</b>&#160;(Springfield, NJ);&#160;<b>Russell VanDommelen</b>&#160;(Byron Center, MI);&#160;<b>Olivia Gay&#160;</b>(Chicago, IL);&#160;<b>Katie Otto</b>&#160;(Park Ridge, IL);&#160;<b>Nancy Thorpe Calhoun&#160;</b>(Plano, TX);&#160;<b>Allie Sauls</b>&#160;(Houston, TX);&#160;<b>Kendra Harris</b>&#160;(Traverse City, MI);&#160;<b>Kelsey Bowman</b>&#160;(Washington, DC);&#160;<b>Teresa Decker&#160;</b>(Ames, IA);&#160;<b>Hannah Epstein&#160;</b>(Ann Arbor, MI);&#160;<b>Shelby Harris</b>&#160;(Traverse City, MI);&#160;<b>Bridget Mayer&#160;</b>(Chicago, IL);&#160;<b>Megan Hewett&#160;</b>(Cincinnati, OH);&#160;<b>Kaitlyn Watson</b>&#160;(Richmond, VA);&#160;<b>Sean Levitt&#160;</b>(Encino, CA);&#160;<b>Amy Babington</b>&#160;(Brooklyn, NY);&#160;<b>Dominique Buhl&#160;</b>(Portland, OR);&#160;<b>Ali Kaiser</b>&#160;(Denver, CO);&#160;<b>Andrea Brzozoski</b>&#160;(Atlanta, GA);&#160;<b>Karen Grant-Davie&#160;</b>(London, England);&#160;<b>Kelly Leary</b>;&#160;<b>Kelsey Shorette</b>;&#160;<b>Kiva Eisenstock</b>&#160;(Pacific Palisades, CA);&#160;<b>Lauren Ciaccio Sistrunk</b>&#160;(New Orleans, LA);&#160;<b>Lillian Anselmi</b>&#160;(New York, NY);&#160;<b>Samantha Sullivan</b>&#160;(Boston, MA);&#160;<b>Jessica Sheely&#160;</b>(Houston, TX);&#160;<b>Sharona Sokolow</b>&#160;(Los Angeles, CA)</p>\r\n</div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="15"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="21"></td>\r\n </tr>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" align="center" cellspacing="0" cellpadding="0" border="0" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="22"></td>\r\n </tr>\r\n <tr>\r\n <td style="color: #000; font-family: \'Helvetica\', \'Arial\', sans-serif;font-size: 14px;font-weight: normal;line-height: 20px; text-align:center;">\r\n Skimm\'d something we missed?\r\n <br>\r\n <br>\r\n Email <a href="mailto:SkimmThis@theSkimm.com" target="_blank" style="color: #009f9c !important; text-decoration: none">SkimmThis@theSkimm.com</a> <span class="bullet">&bull;</span> <a href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496682b8c2a8ce3b89f149c3b0e3d4bb79d27aff69849d4262d99cf9ca3edc7323ac8fb26da3883ad2171" target="_blank" style="color: #009f9c !important; text-decoration: none">Read in browser &raquo;</a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="22"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#009f9c" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="padding:10px;font-family: \'Helvetica\', \'Arial\', sans-serif; color: #fff !important; display: block; font-size: 13px; font-weight: bold; text-align: center; text-decoration: none;letter-spacing:3px; min-width: 320px; " class="share-header">\r\n SHARE &amp; FOLLOW US\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n <table bgcolor="#009f9c" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="10"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="font-family: Helvetica, arial, sans-serif; font-size: 12px; color: #333333; text-align:center;line-height: 24px;min-width:245px;" class="share-facebook-and-twitter">\r\n <a class="share share-facebook" target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668b8a219a19a4a11f7fbe00b3be2b3a67d604585348adbc462e8d827955d9906e5" style="color: #009f9c !important; display: inline-block; margin:0 15px; width:90px; white-space:nowrap; text-align: center; text-decoration: none; text-transform: uppercase"><img src="http://cdn.theskimm.com/email/3/retina/footer_facebook.png" width="10" height="23" alt="Like Us" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: block; float: none; font-size: 28px; margin: 0 auto 10px; max-width: 100%; outline: none; text-decoration: none;" align="none"><span style="color: #fff !important; display: block; font-size: 11px; font-weight: bold; letter-spacing: 3px; margin: 15px auto">Facebook</span></a>\r\n <a class="share share-twitter" target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966898e1043a8cc241984730cf63d0784bd543423d9f1df397f2a7a4203f959e362b" style="color: #009f9c !important; display: inline-block; margin:0 15px; width:90px; white-space:nowrap; text-align: center; text-decoration: none; text-transform: uppercase"><img src="http://cdn.theskimm.com/email/3/retina/footer_twitter.png" width="25" height="19" alt="Tweet with Us" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: block; float: none; font-size: 28px; margin: 0 auto 10px; max-width: 100%; outline: none; text-decoration: none;" align="none"><span style="color: #fff !important; display: block; font-size: 11px; font-weight: bold; letter-spacing: 3px; margin: 15px auto">Twitter</span></a>\r\n <a class="share share-tumblr" target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe4966849a03da5efae6876e0409669af55199d72299531e60a31b4a6931035c958b874" style="color: #009f9c !important; display: inline-block; margin:0 15px; width:90px; white-space:nowrap; text-align: center; text-decoration: none; text-transform: uppercase"><img src="http://cdn.theskimm.com/email/3/retina/footer_tumblr.png" width="13" height="21" alt="Tumble with Us" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: block; float: none; font-size: 28px; margin: 0 auto 8px; max-width: 100%; outline: none; text-decoration: none;" align="none"><span style="color: #fff !important; display: block; font-size: 11px; font-weight: bold; letter-spacing: 3px; margin: 15px auto">Tumblr</span></a>\r\n <a class="share share-instagram" target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe496683afbe8e0ef4d9cc7aefbfed95a6baafebe6a73c968fb025ecdf2f31a6db046db" style="color: #009f9c !important; display: inline-block; margin:0 15px; width:90px; white-space:nowrap; text-align: center; text-decoration: none; text-transform: uppercase"><img src="http://cdn.theskimm.com/email/3/retina/footer_instagram.png" width="21" height="22" alt="Instagram Us" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: block; float: none; font-size: 28px; margin: 0 auto 10px; max-width: 100%; outline: none; text-decoration: none;" align="none"><span style="color: #fff !important; display: block; font-size: 11px; font-weight: bold; letter-spacing: 3px; margin: 15px auto">Instagram</span></a>\r\n <a class="share share-pinterest" target="_blank" href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668f83d6ecd33ef7fd9704213f209da019e868a39f71d2272cde348d4cdcc3fcb2d" style="color: #009f9c !important; display: inline-block; margin:0 15px; width:90px; white-space:nowrap; text-align: center; text-decoration: none; text-transform: uppercase"><img src="http://cdn.theskimm.com/email/3/retina/footer_pinterest.png" width="24" height="24" alt="Pin Us" style="-ms-interpolation-mode: bicubic; border: none; clear: both; display: block; float: none; font-size: 28px; margin: 0 auto 8px; max-width: 100%; outline: none; text-decoration: none;" align="none"><span style="color: #fff !important; display: block; font-size: 11px; font-weight: bold; letter-spacing: 3px; margin: 15px auto">Pinterest</span></a>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n <table width="100%" bgcolor="#ffffff" cellpadding="0" cellspacing="0" border="0" id="backgroundTable">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%">\r\n <table bgcolor="#ffffff" width="100%" style="max-width:620px" cellpadding="0" cellspacing="0" border="0" align="center" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:290px;" align="left" border="0" cellpadding="0" cellspacing="0" class="devicewidth">\r\n <tbody>\r\n <tr>\r\n <td width="100%" height="10"></td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <table width="100%" style="max-width:270px;" align="center" border="0" cellpadding="0" cellspacing="0" class="devicewidthinner">\r\n <tbody>\r\n <tr>\r\n <td style="font-family: Helvetica, arial, sans-serif; font-size: 12px; color: #333333; text-align:left;line-height: 24px;">\r\n Copyright &#169; 2016 theSkimm, All rights reserved.\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="22"></td>\r\n </tr>\r\n <tr>\r\n <td style="font-family: Helvetica, arial, sans-serif; font-size: 12px; color: #333333; text-align:left;line-height: 24px;">\r\n <b>Our mailing address is: </b><br />\r\n theSkimm Inc.<br />\r\n 49 W 23rd Street, 10th Floor<br />\r\n New York, NY, 10010, United States\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="22"></td>\r\n </tr>\r\n <tr>\r\n <td style="font-family: Helvetica, arial, sans-serif; font-size: 12px; color: #333333; text-align:left;line-height: 24px;">\r\n <a href="http://click.morning7.theskimm.com/profile_center.aspx?qs=a9002aa5f6954ac9bd3702a4eac3ef750c124ba6406cfbb7f60cc269a1b4d8aebe14ef93ad7e94477f4156c5a27370f7e0422cc5321d81e2" >Update Profile</a><br/>\r\n <a href="http://click.morning7.theskimm.com/?qs=5d95ad2dcbe49668caba5850dff6b71d76b1bac535ba3008782c3ceffefdcc0b32ef6129f5abef5c" >Unsubscribe</a>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="60"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width="100%" height="10"></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n<img src="https://pixel.monitor1.returnpath.net/pixel.gif?r=3e9fa24c7442d95337a14dfcd7b45f193869d154" width="1" height="1" />\r\n<IMG SRC="https://ad.doubleclick.net/ddm/ad/N2335.1915120THESKIMM/B10592123.141253295;sz=1x1;ord=0bf40eb5-9e50-4f75-8f4f-dee229746301;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=?" BORDER="0" HEIGHT="1" WIDTH="1" ALT="Advertisement">\r\n<IMG SRC="https://ad.doubleclick.net/ddm/ad/N2335.1915120THESKIMM/B10592123.141254194;sz=1x1;ord=e632fb76-3773-4c02-af47-63ecc0003c2f;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=?" BORDER="0" HEIGHT="1" WIDTH="1" ALT="Advertisement">\r\n</body>\r\n</html>\r\n
# """,
# 'References':'<517AC78B.5060404@newsletters.newsblur.com>',
# 'signature':'1369fa4dcc7de7fac51f5bb408bd5c9daa8730e80d394e8a128658d74e66904skimm2',
# 'Content-Type':'multipart/mixed; boundary="------------020601070403020003080006"',
# 'Subject':'Test Newsletter theskimm'
# }
params = request.POST
response = HttpResponse("OK")
if settings.DEBUG or "samuel" in params.get("To", ""):
logging.debug(" ---> Email newsletter: %s" % params)
if not params or not len(params.keys()):
logging.debug(" ***> Email newsletter blank body: %s" % request.body)
raise Http404
email_newsletter = EmailNewsletter()
story = email_newsletter.receive_newsletter(params)
if not story:
raise Http404
return response
def newsletter_story(request, story_hash):
try:
story = MStory.objects.get(story_hash=story_hash)
except MStory.DoesNotExist:
raise Http404
story = Feed.format_story(story)
return HttpResponse(story["story_content"])