AppWelcome.php
1 year ago
Avocado.php
1 year ago
Birds.php
1 year ago
BirthdayCelebration.php
2 months ago
BookStoreWithCoupon.php
1 year ago
BrandingAgencyNews.php
1 year ago
BuddhistTemple.php
1 year ago
Charity.php
1 year ago
CityLocalNews.php
1 year ago
ClearNews.php
1 year ago
Coffee.php
1 year ago
College.php
1 year ago
ComputerRepair.php
1 year ago
ConfirmInterestBeforeDeactivation.php
2 years ago
ConfirmInterestOrUnsubscribe.php
2 years ago
DogFood.php
1 year ago
Drone.php
1 year ago
Engineering.php
1 year ago
Faith.php
1 year ago
FarmersMarket.php
1 year ago
FashionBlog.php
1 year ago
FashionBlogA.php
1 year ago
FashionShop.php
1 year ago
FashionStore.php
1 year ago
FestivalEvent.php
1 year ago
Fitness.php
1 year ago
FlowersWithCoupon.php
1 year ago
FoodBox.php
1 year ago
GiftWelcome.php
1 year ago
Guitarist.php
1 year ago
HealthyFoodBlog.php
1 year ago
Hotels.php
1 year ago
IndustryConference.php
1 year ago
JazzClub.php
1 year ago
KidsClothing.php
1 year ago
LifestyleBlogA.php
1 year ago
LifestyleBlogB.php
1 year ago
Minimal.php
1 year ago
ModularStyleStories.php
1 year ago
Mosque.php
1 year ago
Motor.php
1 year ago
Music.php
1 year ago
NewsDay.php
1 year ago
NewsletterBlank121Column.php
1 year ago
NewsletterBlank12Column.php
1 year ago
NewsletterBlank13Column.php
1 year ago
NewsletterBlank1Column.php
1 year ago
NewspaperTraditional.php
1 year ago
NotSoMedium.php
1 year ago
Painter.php
1 year ago
Phone.php
1 year ago
Photography.php
1 year ago
PieceOfCake.php
1 year ago
Poet.php
1 year ago
PostNotificationsBlank1Column.php
1 year ago
PrimarySchool.php
1 year ago
RealEstate.php
1 year ago
RenewableEnergy.php
1 year ago
Retro.php
1 year ago
RetroComputingMagazine.php
1 year ago
RockBand.php
1 year ago
RssSimpleNews.php
1 year ago
ScienceWeekly.php
1 year ago
Shoes.php
1 year ago
SimpleText.php
2 years ago
Software.php
1 year ago
Sunglasses.php
1 year ago
Synagogue.php
1 year ago
TakeAHike.php
1 year ago
Vlogger.php
1 year ago
WelcomeBlank12Column.php
1 year ago
WelcomeBlank1Column.php
1 year ago
WideStoryLayout.php
1 year ago
WineCity.php
1 year ago
WordPressTheme.php
1 year ago
WorldCup.php
1 year ago
YogaStudio.php
1 year ago
index.php
3 years ago
RetroComputingMagazine.php
666 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\Config\PopulatorData\Templates; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | class RetroComputingMagazine { |
| 9 | |
| 10 | private $template_image_url; |
| 11 | private $social_icon_url; |
| 12 | |
| 13 | public function __construct( |
| 14 | $assets_url |
| 15 | ) { |
| 16 | $this->template_image_url = 'https://ps.w.org/mailpoet/assets/newsletter-templates/retro_computing_magazine'; |
| 17 | $this->social_icon_url = $assets_url . '/img/newsletter_editor/social-icons'; |
| 18 | } |
| 19 | |
| 20 | public function get() { |
| 21 | return [ |
| 22 | 'name' => __("Retro Computing Magazine", 'mailpoet'), |
| 23 | 'categories' => json_encode(['standard', 'all']), |
| 24 | 'readonly' => 1, |
| 25 | 'thumbnail' => $this->getThumbnail(), |
| 26 | 'body' => json_encode($this->getBody()), |
| 27 | ]; |
| 28 | } |
| 29 | |
| 30 | private function getThumbnail() { |
| 31 | return $this->template_image_url . '/thumbnail.20190411-1500.jpg'; |
| 32 | } |
| 33 | |
| 34 | private function getBody() { |
| 35 | return [ |
| 36 | 'content' => |
| 37 | [ |
| 38 | 'type' => 'container', |
| 39 | 'orientation' => 'vertical', |
| 40 | 'styles' => |
| 41 | [ |
| 42 | 'block' => |
| 43 | [ |
| 44 | 'backgroundColor' => 'transparent', |
| 45 | ], |
| 46 | ], |
| 47 | 'blocks' => |
| 48 | [ |
| 49 | 0 => |
| 50 | [ |
| 51 | 'type' => 'container', |
| 52 | 'orientation' => 'horizontal', |
| 53 | 'styles' => |
| 54 | [ |
| 55 | 'block' => |
| 56 | [ |
| 57 | 'backgroundColor' => '#4473a1', |
| 58 | ], |
| 59 | ], |
| 60 | 'blocks' => |
| 61 | [ |
| 62 | 0 => |
| 63 | [ |
| 64 | 'type' => 'container', |
| 65 | 'orientation' => 'vertical', |
| 66 | 'styles' => |
| 67 | [ |
| 68 | 'block' => |
| 69 | [ |
| 70 | 'backgroundColor' => 'transparent', |
| 71 | ], |
| 72 | ], |
| 73 | 'blocks' => |
| 74 | [ |
| 75 | 0 => |
| 76 | [ |
| 77 | 'type' => 'spacer', |
| 78 | 'styles' => |
| 79 | [ |
| 80 | 'block' => |
| 81 | [ |
| 82 | 'backgroundColor' => '#008282', |
| 83 | 'height' => '40px', |
| 84 | ], |
| 85 | ], |
| 86 | ], |
| 87 | ], |
| 88 | ], |
| 89 | ], |
| 90 | ], |
| 91 | 1 => |
| 92 | [ |
| 93 | 'type' => 'container', |
| 94 | 'orientation' => 'horizontal', |
| 95 | 'styles' => |
| 96 | [ |
| 97 | 'block' => |
| 98 | [ |
| 99 | 'backgroundColor' => '#f8f8f8', |
| 100 | ], |
| 101 | ], |
| 102 | 'blocks' => |
| 103 | [ |
| 104 | 0 => |
| 105 | [ |
| 106 | 'type' => 'container', |
| 107 | 'orientation' => 'vertical', |
| 108 | 'styles' => |
| 109 | [ |
| 110 | 'block' => |
| 111 | [ |
| 112 | 'backgroundColor' => 'transparent', |
| 113 | ], |
| 114 | ], |
| 115 | 'blocks' => |
| 116 | [ |
| 117 | 0 => |
| 118 | [ |
| 119 | 'type' => 'image', |
| 120 | 'link' => '', |
| 121 | 'src' => $this->template_image_url . '/Windows94-Header.png', |
| 122 | 'alt' => 'Windows94-Header', |
| 123 | 'fullWidth' => true, |
| 124 | 'width' => '1280px', |
| 125 | 'height' => '740px', |
| 126 | 'styles' => |
| 127 | [ |
| 128 | 'block' => |
| 129 | [ |
| 130 | 'textAlign' => 'center', |
| 131 | ], |
| 132 | ], |
| 133 | ], |
| 134 | ], |
| 135 | ], |
| 136 | ], |
| 137 | ], |
| 138 | 2 => |
| 139 | [ |
| 140 | 'type' => 'container', |
| 141 | 'orientation' => 'horizontal', |
| 142 | 'styles' => |
| 143 | [ |
| 144 | 'block' => |
| 145 | [ |
| 146 | 'backgroundColor' => '#ffffff', |
| 147 | ], |
| 148 | ], |
| 149 | 'blocks' => |
| 150 | [ |
| 151 | 0 => |
| 152 | [ |
| 153 | 'type' => 'container', |
| 154 | 'orientation' => 'vertical', |
| 155 | 'styles' => |
| 156 | [ |
| 157 | 'block' => |
| 158 | [ |
| 159 | 'backgroundColor' => 'transparent', |
| 160 | ], |
| 161 | ], |
| 162 | 'blocks' => |
| 163 | [ |
| 164 | 0 => |
| 165 | [ |
| 166 | 'type' => 'header', |
| 167 | 'text' => '<p><span style="color: #ffffff;"><a href="[link:newsletter_view_in_browser_url]" style="color: #ffffff;">' . __("View this in your browser.", 'mailpoet') . '</a></span></p>', |
| 168 | 'styles' => |
| 169 | [ |
| 170 | 'block' => |
| 171 | [ |
| 172 | 'backgroundColor' => '#008282', |
| 173 | ], |
| 174 | 'text' => |
| 175 | [ |
| 176 | 'fontColor' => '#222222', |
| 177 | 'fontFamily' => 'Courier New', |
| 178 | 'fontSize' => '12px', |
| 179 | 'textAlign' => 'left', |
| 180 | ], |
| 181 | 'link' => |
| 182 | [ |
| 183 | 'fontColor' => '#6cb7d4', |
| 184 | 'textDecoration' => 'underline', |
| 185 | ], |
| 186 | ], |
| 187 | ], |
| 188 | 1 => |
| 189 | [ |
| 190 | 'type' => 'spacer', |
| 191 | 'styles' => |
| 192 | [ |
| 193 | 'block' => |
| 194 | [ |
| 195 | 'backgroundColor' => 'transparent', |
| 196 | 'height' => '30px', |
| 197 | ], |
| 198 | ], |
| 199 | ], |
| 200 | 2 => |
| 201 | [ |
| 202 | 'type' => 'text', |
| 203 | 'text' => '<h1 style="text-align: left;"><strong>We\'re upgrading!</strong></h1> |
| 204 | <p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In elementum nunc vel est congue, a venenatis nunc aliquet. Curabitur luctus, nulla et dignissim elementum, ipsum eros fermentum nulla, non cursus eros mi eu velit. Nunc ex nibh, porta vulputate pharetra ac, placerat sed orci. Etiam enim enim, aliquet nec ligula in, ultrices iaculis dolor. Suspendisse potenti. Praesent fringilla augue ut lorem mattis, vitae fringilla nunc faucibus. </span></p> |
| 205 | <p><span></span></p> |
| 206 | <p><span>Quisque in leo felis. Etiam at libero et enim tincidunt scelerisque. Ut felis lectus, imperdiet quis justo quis, elementum sagittis tellus. Sed elementum, lacus at iaculis vestibulum, nunc leo gravida nisi, sed dapibus nisi odio ac ex. Aliquam id arcu dictum, cursus quam id, eleifend libero.</span></p>', |
| 207 | ], |
| 208 | 3 => |
| 209 | [ |
| 210 | 'type' => 'divider', |
| 211 | 'styles' => |
| 212 | [ |
| 213 | 'block' => |
| 214 | [ |
| 215 | 'backgroundColor' => 'transparent', |
| 216 | 'padding' => '13px', |
| 217 | 'borderStyle' => 'ridge', |
| 218 | 'borderWidth' => '3px', |
| 219 | 'borderColor' => '#aaaaaa', |
| 220 | ], |
| 221 | ], |
| 222 | ], |
| 223 | 4 => |
| 224 | [ |
| 225 | 'type' => 'spacer', |
| 226 | 'styles' => |
| 227 | [ |
| 228 | 'block' => |
| 229 | [ |
| 230 | 'backgroundColor' => 'transparent', |
| 231 | 'height' => '20px', |
| 232 | ], |
| 233 | ], |
| 234 | ], |
| 235 | 5 => |
| 236 | [ |
| 237 | 'type' => 'text', |
| 238 | 'text' => '<h1><strong>Latest News</strong></h1>', |
| 239 | ], |
| 240 | ], |
| 241 | ], |
| 242 | ], |
| 243 | ], |
| 244 | 3 => |
| 245 | [ |
| 246 | 'type' => 'container', |
| 247 | 'orientation' => 'horizontal', |
| 248 | 'styles' => |
| 249 | [ |
| 250 | 'block' => |
| 251 | [ |
| 252 | 'backgroundColor' => 'transparent', |
| 253 | ], |
| 254 | ], |
| 255 | 'blocks' => |
| 256 | [ |
| 257 | 0 => |
| 258 | [ |
| 259 | 'type' => 'container', |
| 260 | 'orientation' => 'vertical', |
| 261 | 'styles' => |
| 262 | [ |
| 263 | 'block' => |
| 264 | [ |
| 265 | 'backgroundColor' => 'transparent', |
| 266 | ], |
| 267 | ], |
| 268 | 'blocks' => |
| 269 | [ |
| 270 | 0 => |
| 271 | [ |
| 272 | 'type' => 'text', |
| 273 | 'text' => '<h3 style="text-align: left;"><strong>What is it like to use a Windows 98 PC in 2017?</strong></h3>', |
| 274 | ], |
| 275 | 1 => |
| 276 | [ |
| 277 | 'type' => 'text', |
| 278 | 'text' => '<p class="mailpoet_wp_post"><span>Computers are much more advanced than they were even a few years ago, but of course we all like to complain about the dumb things they sometimes do. It’s easy to forget how clunky things used to be, though...</span></p> |
| 279 | <p><a href="http://mailpoet.info/odds-on-10-science-breakthroughs-you-can-bet-on/">Read more</a></p>', |
| 280 | ], |
| 281 | ], |
| 282 | ], |
| 283 | 1 => |
| 284 | [ |
| 285 | 'type' => 'container', |
| 286 | 'orientation' => 'vertical', |
| 287 | 'styles' => |
| 288 | [ |
| 289 | 'block' => |
| 290 | [ |
| 291 | 'backgroundColor' => 'transparent', |
| 292 | ], |
| 293 | ], |
| 294 | 'blocks' => |
| 295 | [ |
| 296 | 0 => |
| 297 | [ |
| 298 | 'type' => 'text', |
| 299 | 'text' => '<h3 style="text-align: left;"><strong>Windows 95 still finds life online</strong></h3>', |
| 300 | ], |
| 301 | 1 => |
| 302 | [ |
| 303 | 'type' => 'text', |
| 304 | 'text' => '<p class="mailpoet_wp_post">Microsoft’s Windows 95 has reached the ripe old age of 22 this year and to commemorate this milestone, TheNextWeb goes into some details about the operating system that users may have missed over the years...</p> |
| 305 | <p><a href="http://mailpoet.info/brazils-history-making-hurricane/">Read more</a></p>', |
| 306 | ], |
| 307 | ], |
| 308 | ], |
| 309 | 2 => |
| 310 | [ |
| 311 | 'type' => 'container', |
| 312 | 'orientation' => 'vertical', |
| 313 | 'styles' => |
| 314 | [ |
| 315 | 'block' => |
| 316 | [ |
| 317 | 'backgroundColor' => 'transparent', |
| 318 | ], |
| 319 | ], |
| 320 | 'blocks' => |
| 321 | [ |
| 322 | 0 => |
| 323 | [ |
| 324 | 'type' => 'text', |
| 325 | 'text' => '<h3 style="text-align: left;"><strong>New Sinclair ZX Spectrum Fully Funded</strong></h3>', |
| 326 | ], |
| 327 | 1 => |
| 328 | [ |
| 329 | 'type' => 'text', |
| 330 | 'text' => '<p class="mailpoet_wp_post">The new Sinclair ZX Spectrum Next home computer which was launched on Kickstarter to mark the 35th birthday of the original Spectrum produced by Sinclair Research has been fully funded in less than 48 hours...</p> |
| 331 | <p><a href="http://mailpoet.info/cutting-through-the-smog-what-to-do-to-fight-air-pollution/">Read more</a></p>', |
| 332 | ], |
| 333 | ], |
| 334 | ], |
| 335 | ], |
| 336 | ], |
| 337 | 4 => |
| 338 | [ |
| 339 | 'type' => 'container', |
| 340 | 'orientation' => 'horizontal', |
| 341 | 'styles' => |
| 342 | [ |
| 343 | 'block' => |
| 344 | [ |
| 345 | 'backgroundColor' => 'transparent', |
| 346 | ], |
| 347 | ], |
| 348 | 'blocks' => |
| 349 | [ |
| 350 | 0 => |
| 351 | [ |
| 352 | 'type' => 'container', |
| 353 | 'orientation' => 'vertical', |
| 354 | 'styles' => |
| 355 | [ |
| 356 | 'block' => |
| 357 | [ |
| 358 | 'backgroundColor' => 'transparent', |
| 359 | ], |
| 360 | ], |
| 361 | 'blocks' => |
| 362 | [ |
| 363 | 0 => |
| 364 | [ |
| 365 | 'type' => 'spacer', |
| 366 | 'styles' => |
| 367 | [ |
| 368 | 'block' => |
| 369 | [ |
| 370 | 'backgroundColor' => 'transparent', |
| 371 | 'height' => '35px', |
| 372 | ], |
| 373 | ], |
| 374 | ], |
| 375 | 1 => |
| 376 | [ |
| 377 | 'type' => 'spacer', |
| 378 | 'styles' => |
| 379 | [ |
| 380 | 'block' => |
| 381 | [ |
| 382 | 'backgroundColor' => '#008282', |
| 383 | 'height' => '50px', |
| 384 | ], |
| 385 | ], |
| 386 | ], |
| 387 | ], |
| 388 | ], |
| 389 | ], |
| 390 | ], |
| 391 | 5 => |
| 392 | [ |
| 393 | 'type' => 'container', |
| 394 | 'orientation' => 'horizontal', |
| 395 | 'styles' => |
| 396 | [ |
| 397 | 'block' => |
| 398 | [ |
| 399 | 'backgroundColor' => '#008282', |
| 400 | ], |
| 401 | ], |
| 402 | 'blocks' => |
| 403 | [ |
| 404 | 0 => |
| 405 | [ |
| 406 | 'type' => 'container', |
| 407 | 'orientation' => 'vertical', |
| 408 | 'styles' => |
| 409 | [ |
| 410 | 'block' => |
| 411 | [ |
| 412 | 'backgroundColor' => 'transparent', |
| 413 | ], |
| 414 | ], |
| 415 | 'blocks' => |
| 416 | [ |
| 417 | 0 => |
| 418 | [ |
| 419 | 'type' => 'text', |
| 420 | 'text' => '<h2><strong><span style="color: #ffffff;">Did you know?</span></strong></h2> |
| 421 | <p><span style="color: #ffffff;">At the time of creation and development, the microcomputers in Japan were not powerful enough to handle the complex tasks related to the design and programming of Space Invaders. Nishikado then designed his own hardware and developmental tools to make the game a reality.</span></p> |
| 422 | <p><strong><span style="color: #ffffff;"></span></strong></p>', |
| 423 | ], |
| 424 | ], |
| 425 | ], |
| 426 | 1 => |
| 427 | [ |
| 428 | 'type' => 'container', |
| 429 | 'orientation' => 'vertical', |
| 430 | 'styles' => |
| 431 | [ |
| 432 | 'block' => |
| 433 | [ |
| 434 | 'backgroundColor' => 'transparent', |
| 435 | ], |
| 436 | ], |
| 437 | 'blocks' => |
| 438 | [ |
| 439 | 0 => |
| 440 | [ |
| 441 | 'type' => 'image', |
| 442 | 'link' => '', |
| 443 | 'src' => $this->template_image_url . '/Windows94-Today.png', |
| 444 | 'alt' => 'Windows94-Today', |
| 445 | 'fullWidth' => false, |
| 446 | 'width' => '364px', |
| 447 | 'height' => '291px', |
| 448 | 'styles' => |
| 449 | [ |
| 450 | 'block' => |
| 451 | [ |
| 452 | 'textAlign' => 'center', |
| 453 | ], |
| 454 | ], |
| 455 | ], |
| 456 | ], |
| 457 | ], |
| 458 | ], |
| 459 | ], |
| 460 | 6 => |
| 461 | [ |
| 462 | 'type' => 'container', |
| 463 | 'orientation' => 'horizontal', |
| 464 | 'styles' => |
| 465 | [ |
| 466 | 'block' => |
| 467 | [ |
| 468 | 'backgroundColor' => 'transparent', |
| 469 | ], |
| 470 | ], |
| 471 | 'blocks' => |
| 472 | [ |
| 473 | 0 => |
| 474 | [ |
| 475 | 'type' => 'container', |
| 476 | 'orientation' => 'vertical', |
| 477 | 'styles' => |
| 478 | [ |
| 479 | 'block' => |
| 480 | [ |
| 481 | 'backgroundColor' => 'transparent', |
| 482 | ], |
| 483 | ], |
| 484 | 'blocks' => |
| 485 | [ |
| 486 | 0 => |
| 487 | [ |
| 488 | 'type' => 'spacer', |
| 489 | 'styles' => |
| 490 | [ |
| 491 | 'block' => |
| 492 | [ |
| 493 | 'backgroundColor' => '#008282', |
| 494 | 'height' => '20px', |
| 495 | ], |
| 496 | ], |
| 497 | ], |
| 498 | ], |
| 499 | ], |
| 500 | ], |
| 501 | ], |
| 502 | 7 => |
| 503 | [ |
| 504 | 'type' => 'container', |
| 505 | 'orientation' => 'horizontal', |
| 506 | 'styles' => |
| 507 | [ |
| 508 | 'block' => |
| 509 | [ |
| 510 | 'backgroundColor' => '#f8f8f8', |
| 511 | ], |
| 512 | ], |
| 513 | 'blocks' => |
| 514 | [ |
| 515 | 0 => |
| 516 | [ |
| 517 | 'type' => 'container', |
| 518 | 'orientation' => 'vertical', |
| 519 | 'styles' => |
| 520 | [ |
| 521 | 'block' => |
| 522 | [ |
| 523 | 'backgroundColor' => 'transparent', |
| 524 | ], |
| 525 | ], |
| 526 | 'blocks' => |
| 527 | [ |
| 528 | 0 => |
| 529 | [ |
| 530 | 'type' => 'spacer', |
| 531 | 'styles' => |
| 532 | [ |
| 533 | 'block' => |
| 534 | [ |
| 535 | 'backgroundColor' => 'transparent', |
| 536 | 'height' => '20px', |
| 537 | ], |
| 538 | ], |
| 539 | ], |
| 540 | 1 => |
| 541 | [ |
| 542 | 'type' => 'text', |
| 543 | 'text' => '<p style="text-align: center;"><strong>Let\'s get social!</strong></p>', |
| 544 | ], |
| 545 | 2 => |
| 546 | [ |
| 547 | 'type' => 'social', |
| 548 | 'iconSet' => 'official', |
| 549 | 'icons' => |
| 550 | [ |
| 551 | 0 => |
| 552 | [ |
| 553 | 'type' => 'socialIcon', |
| 554 | 'iconType' => 'facebook', |
| 555 | 'link' => 'http://www.facebook.com', |
| 556 | 'image' => $this->social_icon_url . '/11-official/Facebook.png', |
| 557 | 'height' => '32px', |
| 558 | 'width' => '32px', |
| 559 | 'text' => 'Facebook', |
| 560 | ], |
| 561 | 1 => |
| 562 | [ |
| 563 | 'type' => 'socialIcon', |
| 564 | 'iconType' => 'twitter', |
| 565 | 'link' => 'http://www.twitter.com', |
| 566 | 'image' => $this->social_icon_url . '/11-official/X.png', |
| 567 | 'height' => '32px', |
| 568 | 'width' => '32px', |
| 569 | 'text' => 'Twitter', |
| 570 | ], |
| 571 | 2 => |
| 572 | [ |
| 573 | 'type' => 'socialIcon', |
| 574 | 'iconType' => 'youtube', |
| 575 | 'link' => 'http://www.youtube.com', |
| 576 | 'image' => $this->social_icon_url . '/11-official/Youtube.png', |
| 577 | 'height' => '32px', |
| 578 | 'width' => '32px', |
| 579 | 'text' => 'Youtube', |
| 580 | ], |
| 581 | 3 => |
| 582 | [ |
| 583 | 'type' => 'socialIcon', |
| 584 | 'iconType' => 'email', |
| 585 | 'link' => '', |
| 586 | 'image' => $this->social_icon_url . '/11-official/Email.png', |
| 587 | 'height' => '32px', |
| 588 | 'width' => '32px', |
| 589 | 'text' => 'Email', |
| 590 | ], |
| 591 | ], |
| 592 | ], |
| 593 | 3 => |
| 594 | [ |
| 595 | 'type' => 'footer', |
| 596 | 'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . __("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . __("Manage your subscription", 'mailpoet') . '</a><br />' . __("Add your postal address here!", 'mailpoet') . '</p>', |
| 597 | 'styles' => |
| 598 | [ |
| 599 | 'block' => |
| 600 | [ |
| 601 | 'backgroundColor' => 'transparent', |
| 602 | ], |
| 603 | 'text' => |
| 604 | [ |
| 605 | 'fontColor' => '#222222', |
| 606 | 'fontFamily' => 'Courier New', |
| 607 | 'fontSize' => '12px', |
| 608 | 'textAlign' => 'center', |
| 609 | ], |
| 610 | 'link' => |
| 611 | [ |
| 612 | 'fontColor' => '#008282', |
| 613 | 'textDecoration' => 'none', |
| 614 | ], |
| 615 | ], |
| 616 | ], |
| 617 | ], |
| 618 | ], |
| 619 | ], |
| 620 | ], |
| 621 | ], |
| 622 | ], |
| 623 | 'globalStyles' => |
| 624 | [ |
| 625 | 'text' => |
| 626 | [ |
| 627 | 'fontColor' => '#000000', |
| 628 | 'fontFamily' => 'Courier New', |
| 629 | 'fontSize' => '14px', |
| 630 | ], |
| 631 | 'h1' => |
| 632 | [ |
| 633 | 'fontColor' => '#111111', |
| 634 | 'fontFamily' => 'Courier New', |
| 635 | 'fontSize' => '30px', |
| 636 | ], |
| 637 | 'h2' => |
| 638 | [ |
| 639 | 'fontColor' => '#222222', |
| 640 | 'fontFamily' => 'Courier New', |
| 641 | 'fontSize' => '24px', |
| 642 | ], |
| 643 | 'h3' => |
| 644 | [ |
| 645 | 'fontColor' => '#333333', |
| 646 | 'fontFamily' => 'Courier New', |
| 647 | 'fontSize' => '18px', |
| 648 | ], |
| 649 | 'link' => |
| 650 | [ |
| 651 | 'fontColor' => '#008282', |
| 652 | 'textDecoration' => 'underline', |
| 653 | ], |
| 654 | 'wrapper' => |
| 655 | [ |
| 656 | 'backgroundColor' => '#ffffff', |
| 657 | ], |
| 658 | 'body' => |
| 659 | [ |
| 660 | 'backgroundColor' => '#008282', |
| 661 | ], |
| 662 | ], |
| 663 | ]; |
| 664 | } |
| 665 | } |
| 666 |