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
Shoes.php
584 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 Shoes { |
| 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/shoes'; |
| 17 | $this->social_icon_url = $assets_url . '/img/newsletter_editor/social-icons'; |
| 18 | } |
| 19 | |
| 20 | public function get() { |
| 21 | return [ |
| 22 | 'name' => __("Shoes", '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 getBody() { |
| 31 | return [ |
| 32 | 'content' => [ |
| 33 | 'type' => 'container', |
| 34 | 'orientation' => 'vertical', |
| 35 | 'styles' => [ |
| 36 | 'block' => [ |
| 37 | 'backgroundColor' => 'transparent', |
| 38 | ], |
| 39 | ], |
| 40 | 'blocks' => [ |
| 41 | 0 => [ |
| 42 | 'type' => 'container', |
| 43 | 'orientation' => 'horizontal', |
| 44 | 'styles' => [ |
| 45 | 'block' => [ |
| 46 | 'backgroundColor' => '#f6f6f6', |
| 47 | ], |
| 48 | ], |
| 49 | 'blocks' => [ |
| 50 | 0 => [ |
| 51 | 'type' => 'container', |
| 52 | 'orientation' => 'vertical', |
| 53 | 'styles' => [ |
| 54 | 'block' => [ |
| 55 | 'backgroundColor' => 'transparent', |
| 56 | ], |
| 57 | ], |
| 58 | 'blocks' => [ |
| 59 | 0 => [ |
| 60 | 'type' => 'image', |
| 61 | 'link' => '', |
| 62 | 'src' => $this->template_image_url . '/Retail-Shoes-Logo.png', |
| 63 | 'alt' => 'Retail-Shoes-Logo', |
| 64 | 'fullWidth' => true, |
| 65 | 'width' => '1280px', |
| 66 | 'height' => '220px', |
| 67 | 'styles' => [ |
| 68 | 'block' => [ |
| 69 | 'textAlign' => 'center', |
| 70 | ], |
| 71 | ], |
| 72 | ], |
| 73 | ], |
| 74 | ], |
| 75 | ], |
| 76 | ], |
| 77 | 1 => [ |
| 78 | 'type' => 'container', |
| 79 | 'orientation' => 'horizontal', |
| 80 | 'styles' => [ |
| 81 | 'block' => [ |
| 82 | 'backgroundColor' => '#ffffff', |
| 83 | ], |
| 84 | ], |
| 85 | 'blocks' => [ |
| 86 | 0 => [ |
| 87 | 'type' => 'container', |
| 88 | 'orientation' => 'vertical', |
| 89 | 'styles' => [ |
| 90 | 'block' => [ |
| 91 | 'backgroundColor' => 'transparent', |
| 92 | ], |
| 93 | ], |
| 94 | 'blocks' => [ |
| 95 | 0 => [ |
| 96 | 'type' => 'image', |
| 97 | 'link' => '', |
| 98 | 'src' => $this->template_image_url . '/Retail-Shoes-Header.jpg', |
| 99 | 'alt' => 'Retail-Shoes-Header', |
| 100 | 'fullWidth' => true, |
| 101 | 'width' => '1280px', |
| 102 | 'height' => '700px', |
| 103 | 'styles' => [ |
| 104 | 'block' => [ |
| 105 | 'textAlign' => 'center', |
| 106 | ], |
| 107 | ], |
| 108 | ], |
| 109 | ], |
| 110 | ], |
| 111 | ], |
| 112 | ], |
| 113 | 2 => [ |
| 114 | 'type' => 'container', |
| 115 | 'orientation' => 'horizontal', |
| 116 | 'styles' => [ |
| 117 | 'block' => [ |
| 118 | 'backgroundColor' => '#f1b512', |
| 119 | ], |
| 120 | ], |
| 121 | 'blocks' => [ |
| 122 | 0 => [ |
| 123 | 'type' => 'container', |
| 124 | 'orientation' => 'vertical', |
| 125 | 'styles' => [ |
| 126 | 'block' => [ |
| 127 | 'backgroundColor' => 'transparent', |
| 128 | ], |
| 129 | ], |
| 130 | 'blocks' => [ |
| 131 | 0 => [ |
| 132 | 'type' => 'spacer', |
| 133 | 'styles' => [ |
| 134 | 'block' => [ |
| 135 | 'backgroundColor' => 'transparent', |
| 136 | 'height' => '20px', |
| 137 | ], |
| 138 | ], |
| 139 | ], |
| 140 | 1 => [ |
| 141 | 'type' => 'text', |
| 142 | 'text' => '<h2 style="text-align: center;"><span style="color: #614a0d;">Our New Range</span></h2> |
| 143 | <p style="text-align: center;"><span style="color: #614a0d;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt.</span></p> |
| 144 | <p style="text-align: center;"><span style="color: #614a0d;">Curabitur fermentum ligula eget lacus aliquam volutpat. Integer sapien neque, laoreet quis lobortis sed, semper eget magna. Suspendisse potentiu.</span></p>', |
| 145 | ], |
| 146 | 2 => [ |
| 147 | 'type' => 'button', |
| 148 | 'text' => 'Find Out More', |
| 149 | 'url' => '', |
| 150 | 'styles' => [ |
| 151 | 'block' => [ |
| 152 | 'backgroundColor' => '#41c7bf', |
| 153 | 'borderColor' => '#28a9a2', |
| 154 | 'borderWidth' => '2px', |
| 155 | 'borderRadius' => '5px', |
| 156 | 'borderStyle' => 'solid', |
| 157 | 'width' => '160px', |
| 158 | 'lineHeight' => '40px', |
| 159 | 'fontColor' => '#ffffff', |
| 160 | 'fontFamily' => 'Arial', |
| 161 | 'fontSize' => '16px', |
| 162 | 'fontWeight' => 'normal', |
| 163 | 'textAlign' => 'center', |
| 164 | ], |
| 165 | ], |
| 166 | ], |
| 167 | 3 => [ |
| 168 | 'type' => 'spacer', |
| 169 | 'styles' => [ |
| 170 | 'block' => [ |
| 171 | 'backgroundColor' => 'transparent', |
| 172 | 'height' => '30px', |
| 173 | ], |
| 174 | ], |
| 175 | ], |
| 176 | ], |
| 177 | ], |
| 178 | ], |
| 179 | ], |
| 180 | 3 => [ |
| 181 | 'type' => 'container', |
| 182 | 'orientation' => 'horizontal', |
| 183 | 'styles' => [ |
| 184 | 'block' => [ |
| 185 | 'backgroundColor' => '#36b0a9', |
| 186 | ], |
| 187 | ], |
| 188 | 'blocks' => [ |
| 189 | 0 => [ |
| 190 | 'type' => 'container', |
| 191 | 'orientation' => 'vertical', |
| 192 | 'styles' => [ |
| 193 | 'block' => [ |
| 194 | 'backgroundColor' => 'transparent', |
| 195 | ], |
| 196 | ], |
| 197 | 'blocks' => [ |
| 198 | 0 => [ |
| 199 | 'type' => 'spacer', |
| 200 | 'styles' => [ |
| 201 | 'block' => [ |
| 202 | 'backgroundColor' => 'transparent', |
| 203 | 'height' => '70px', |
| 204 | ], |
| 205 | ], |
| 206 | ], |
| 207 | 1 => [ |
| 208 | 'type' => 'text', |
| 209 | 'text' => '<h2><span style="color: #ffffff;">Handcrafted Shoes</span></h2> |
| 210 | <p style="font-size: 14px;"><span><span style="color: #ffffff;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt. Curabitur fermentum ligula eget lacus aliquam volutpat.</span></span></p>', |
| 211 | ], |
| 212 | 2 => [ |
| 213 | 'type' => 'spacer', |
| 214 | 'styles' => [ |
| 215 | 'block' => [ |
| 216 | 'backgroundColor' => 'transparent', |
| 217 | 'height' => '40px', |
| 218 | ], |
| 219 | ], |
| 220 | ], |
| 221 | ], |
| 222 | ], |
| 223 | 1 => [ |
| 224 | 'type' => 'container', |
| 225 | 'orientation' => 'vertical', |
| 226 | 'styles' => [ |
| 227 | 'block' => [ |
| 228 | 'backgroundColor' => 'transparent', |
| 229 | ], |
| 230 | ], |
| 231 | 'blocks' => [ |
| 232 | 0 => [ |
| 233 | 'type' => 'image', |
| 234 | 'link' => '', |
| 235 | 'src' => $this->template_image_url . '/Retail-Shoes-Boxes-1.jpg', |
| 236 | 'alt' => 'Retail-Shoes-Boxes-1', |
| 237 | 'fullWidth' => true, |
| 238 | 'width' => '700px', |
| 239 | 'height' => '700px', |
| 240 | 'styles' => [ |
| 241 | 'block' => [ |
| 242 | 'textAlign' => 'center', |
| 243 | ], |
| 244 | ], |
| 245 | ], |
| 246 | ], |
| 247 | ], |
| 248 | ], |
| 249 | ], |
| 250 | 4 => [ |
| 251 | 'type' => 'container', |
| 252 | 'orientation' => 'horizontal', |
| 253 | 'styles' => [ |
| 254 | 'block' => [ |
| 255 | 'backgroundColor' => '#36b0a9', |
| 256 | ], |
| 257 | ], |
| 258 | 'blocks' => [ |
| 259 | 0 => [ |
| 260 | 'type' => 'container', |
| 261 | 'orientation' => 'vertical', |
| 262 | 'styles' => [ |
| 263 | 'block' => [ |
| 264 | 'backgroundColor' => 'transparent', |
| 265 | ], |
| 266 | ], |
| 267 | 'blocks' => [ |
| 268 | 0 => [ |
| 269 | 'type' => 'image', |
| 270 | 'link' => '', |
| 271 | 'src' => $this->template_image_url . '/Retail-Shoes-Boxes-2.jpg', |
| 272 | 'alt' => 'Retail-Shoes-Boxes-2', |
| 273 | 'fullWidth' => true, |
| 274 | 'width' => '700px', |
| 275 | 'height' => '700px', |
| 276 | 'styles' => [ |
| 277 | 'block' => [ |
| 278 | 'textAlign' => 'center', |
| 279 | ], |
| 280 | ], |
| 281 | ], |
| 282 | ], |
| 283 | ], |
| 284 | 1 => [ |
| 285 | 'type' => 'container', |
| 286 | 'orientation' => 'vertical', |
| 287 | 'styles' => [ |
| 288 | 'block' => [ |
| 289 | 'backgroundColor' => 'transparent', |
| 290 | ], |
| 291 | ], |
| 292 | 'blocks' => [ |
| 293 | 0 => [ |
| 294 | 'type' => 'spacer', |
| 295 | 'styles' => [ |
| 296 | 'block' => [ |
| 297 | 'backgroundColor' => 'transparent', |
| 298 | 'height' => '70px', |
| 299 | ], |
| 300 | ], |
| 301 | ], |
| 302 | 1 => [ |
| 303 | 'type' => 'text', |
| 304 | 'text' => '<h2><span style="color: #ffffff;">Perfect For Any Occasion</span></h2> |
| 305 | <p style="font-size: 14px;"><span><span style="color: #ffffff;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque cursus aliquam urna, non ultricies diam sagittis sit amet. Etiam tempus a metus sed tincidunt. Curabitur fermentum ligula eget lacus aliquam volutpat.</span></span></p>', |
| 306 | ], |
| 307 | 2 => [ |
| 308 | 'type' => 'spacer', |
| 309 | 'styles' => [ |
| 310 | 'block' => [ |
| 311 | 'backgroundColor' => 'transparent', |
| 312 | 'height' => '40px', |
| 313 | ], |
| 314 | ], |
| 315 | ], |
| 316 | ], |
| 317 | ], |
| 318 | ], |
| 319 | ], |
| 320 | 5 => [ |
| 321 | 'type' => 'container', |
| 322 | 'orientation' => 'horizontal', |
| 323 | 'styles' => [ |
| 324 | 'block' => [ |
| 325 | 'backgroundColor' => '#f6f6f6', |
| 326 | ], |
| 327 | ], |
| 328 | 'blocks' => [ |
| 329 | 0 => [ |
| 330 | 'type' => 'container', |
| 331 | 'orientation' => 'vertical', |
| 332 | 'styles' => [ |
| 333 | 'block' => [ |
| 334 | 'backgroundColor' => 'transparent', |
| 335 | ], |
| 336 | ], |
| 337 | 'blocks' => [ |
| 338 | 0 => [ |
| 339 | 'type' => 'spacer', |
| 340 | 'styles' => [ |
| 341 | 'block' => [ |
| 342 | 'backgroundColor' => 'transparent', |
| 343 | 'height' => '40px', |
| 344 | ], |
| 345 | ], |
| 346 | ], |
| 347 | 1 => [ |
| 348 | 'type' => 'text', |
| 349 | 'text' => '<h3 style="text-align: center;"><strong>We\'re open every day!</strong></h3> |
| 350 | <p style="text-align: center;">Call in any time and we\'ll help you pick the best shoes for any occasion.</p> |
| 351 | <p style="text-align: center;">If you\'re not happy, just bring them back to us and we\'ll give you a full refund.</p>', |
| 352 | ], |
| 353 | 2 => [ |
| 354 | 'type' => 'button', |
| 355 | 'text' => 'Check Out Our Website', |
| 356 | 'url' => '', |
| 357 | 'styles' => [ |
| 358 | 'block' => [ |
| 359 | 'backgroundColor' => '#41c7bf', |
| 360 | 'borderColor' => '#28a9a2', |
| 361 | 'borderWidth' => '2px', |
| 362 | 'borderRadius' => '5px', |
| 363 | 'borderStyle' => 'solid', |
| 364 | 'width' => '220px', |
| 365 | 'lineHeight' => '40px', |
| 366 | 'fontColor' => '#ffffff', |
| 367 | 'fontFamily' => 'Arial', |
| 368 | 'fontSize' => '16px', |
| 369 | 'fontWeight' => 'normal', |
| 370 | 'textAlign' => 'center', |
| 371 | ], |
| 372 | ], |
| 373 | ], |
| 374 | 3 => [ |
| 375 | 'type' => 'spacer', |
| 376 | 'styles' => [ |
| 377 | 'block' => [ |
| 378 | 'backgroundColor' => 'transparent', |
| 379 | 'height' => '30px', |
| 380 | ], |
| 381 | ], |
| 382 | ], |
| 383 | 4 => [ |
| 384 | 'type' => 'divider', |
| 385 | 'styles' => [ |
| 386 | 'block' => [ |
| 387 | 'backgroundColor' => 'transparent', |
| 388 | 'padding' => '13px', |
| 389 | 'borderStyle' => 'solid', |
| 390 | 'borderWidth' => '2px', |
| 391 | 'borderColor' => '#d3d3d3', |
| 392 | ], |
| 393 | ], |
| 394 | ], |
| 395 | 5 => [ |
| 396 | 'type' => 'spacer', |
| 397 | 'styles' => [ |
| 398 | 'block' => [ |
| 399 | 'backgroundColor' => 'transparent', |
| 400 | 'height' => '20px', |
| 401 | ], |
| 402 | ], |
| 403 | ], |
| 404 | ], |
| 405 | ], |
| 406 | ], |
| 407 | ], |
| 408 | 6 => [ |
| 409 | 'type' => 'container', |
| 410 | 'orientation' => 'horizontal', |
| 411 | 'styles' => [ |
| 412 | 'block' => [ |
| 413 | 'backgroundColor' => '#f6f6f6', |
| 414 | ], |
| 415 | ], |
| 416 | 'blocks' => [ |
| 417 | 0 => [ |
| 418 | 'type' => 'container', |
| 419 | 'orientation' => 'vertical', |
| 420 | 'styles' => [ |
| 421 | 'block' => [ |
| 422 | 'backgroundColor' => 'transparent', |
| 423 | ], |
| 424 | ], |
| 425 | 'blocks' => [ |
| 426 | 0 => [ |
| 427 | 'type' => 'image', |
| 428 | 'link' => '', |
| 429 | 'src' => $this->template_image_url . '/Retail-Shoes-Logo-Footer.png', |
| 430 | 'alt' => 'Retail-Shoes-Logo-Footer', |
| 431 | 'fullWidth' => true, |
| 432 | 'width' => '1280px', |
| 433 | 'height' => '60px', |
| 434 | 'styles' => [ |
| 435 | 'block' => [ |
| 436 | 'textAlign' => 'center', |
| 437 | ], |
| 438 | ], |
| 439 | ], |
| 440 | 1 => [ |
| 441 | 'type' => 'spacer', |
| 442 | 'styles' => [ |
| 443 | 'block' => [ |
| 444 | 'backgroundColor' => 'transparent', |
| 445 | 'height' => '20px', |
| 446 | ], |
| 447 | ], |
| 448 | ], |
| 449 | 2 => [ |
| 450 | 'type' => 'text', |
| 451 | 'text' => '<p style="text-align: center; font-size: 12px;"><span style="color: #999999;">Address Line 1</span></p> |
| 452 | <p style="text-align: center; font-size: 12px;"><span style="color: #999999;">Address Line 2</span></p> |
| 453 | <p style="text-align: center; font-size: 12px;"><span style="color: #999999;">City</span></p> |
| 454 | <p style="text-align: center; font-size: 12px;"><span style="color: #999999;">Country</span></p>', |
| 455 | ], |
| 456 | 3 => [ |
| 457 | 'type' => 'social', |
| 458 | 'iconSet' => 'official', |
| 459 | 'icons' => [ |
| 460 | 0 => [ |
| 461 | 'type' => 'socialIcon', |
| 462 | 'iconType' => 'facebook', |
| 463 | 'link' => 'http://www.facebook.com', |
| 464 | 'image' => $this->social_icon_url . '/11-official/Facebook.png', |
| 465 | 'height' => '32px', |
| 466 | 'width' => '32px', |
| 467 | 'text' => 'Facebook', |
| 468 | ], |
| 469 | 1 => [ |
| 470 | 'type' => 'socialIcon', |
| 471 | 'iconType' => 'twitter', |
| 472 | 'link' => 'http://www.twitter.com', |
| 473 | 'image' => $this->social_icon_url . '/11-official/X.png', |
| 474 | 'height' => '32px', |
| 475 | 'width' => '32px', |
| 476 | 'text' => 'Twitter', |
| 477 | ], |
| 478 | 2 => [ |
| 479 | 'type' => 'socialIcon', |
| 480 | 'iconType' => 'instagram', |
| 481 | 'link' => 'http://instagram.com', |
| 482 | 'image' => $this->social_icon_url . '/11-official/Instagram.png', |
| 483 | 'height' => '32px', |
| 484 | 'width' => '32px', |
| 485 | 'text' => 'Instagram', |
| 486 | ], |
| 487 | ], |
| 488 | ], |
| 489 | ], |
| 490 | ], |
| 491 | ], |
| 492 | ], |
| 493 | 7 => [ |
| 494 | 'type' => 'container', |
| 495 | 'orientation' => 'horizontal', |
| 496 | 'styles' => [ |
| 497 | 'block' => [ |
| 498 | 'backgroundColor' => '#f6f6f6', |
| 499 | ], |
| 500 | ], |
| 501 | 'blocks' => [ |
| 502 | 0 => [ |
| 503 | 'type' => 'container', |
| 504 | 'orientation' => 'vertical', |
| 505 | 'styles' => [ |
| 506 | 'block' => [ |
| 507 | 'backgroundColor' => 'transparent', |
| 508 | ], |
| 509 | ], |
| 510 | 'blocks' => [ |
| 511 | 0 => [ |
| 512 | 'type' => 'footer', |
| 513 | 'text' => '<p><a href="[link:subscription_unsubscribe_url]">' . __("Unsubscribe", 'mailpoet') . '</a> | <a href="[link:subscription_manage_url]">' . __("Manage your subscription", 'mailpoet') . '</a></p>', |
| 514 | 'styles' => [ |
| 515 | 'block' => [ |
| 516 | 'backgroundColor' => 'transparent', |
| 517 | ], |
| 518 | 'text' => [ |
| 519 | 'fontColor' => '#222222', |
| 520 | 'fontFamily' => 'Arial', |
| 521 | 'fontSize' => '12px', |
| 522 | 'textAlign' => 'center', |
| 523 | ], |
| 524 | 'link' => [ |
| 525 | 'fontColor' => '#41c7bf', |
| 526 | 'textDecoration' => 'none', |
| 527 | ], |
| 528 | ], |
| 529 | ], |
| 530 | 1 => [ |
| 531 | 'type' => 'spacer', |
| 532 | 'styles' => [ |
| 533 | 'block' => [ |
| 534 | 'backgroundColor' => 'transparent', |
| 535 | 'height' => '40px', |
| 536 | ], |
| 537 | ], |
| 538 | ], |
| 539 | ], |
| 540 | ], |
| 541 | ], |
| 542 | ], |
| 543 | ], |
| 544 | ], |
| 545 | 'globalStyles' => [ |
| 546 | 'text' => [ |
| 547 | 'fontColor' => '#000000', |
| 548 | 'fontFamily' => 'Arial', |
| 549 | 'fontSize' => '15px', |
| 550 | ], |
| 551 | 'h1' => [ |
| 552 | 'fontColor' => '#111111', |
| 553 | 'fontFamily' => 'Arial', |
| 554 | 'fontSize' => '30px', |
| 555 | ], |
| 556 | 'h2' => [ |
| 557 | 'fontColor' => '#222222', |
| 558 | 'fontFamily' => 'Arial', |
| 559 | 'fontSize' => '24px', |
| 560 | ], |
| 561 | 'h3' => [ |
| 562 | 'fontColor' => '#333333', |
| 563 | 'fontFamily' => 'Arial', |
| 564 | 'fontSize' => '22px', |
| 565 | ], |
| 566 | 'link' => [ |
| 567 | 'fontColor' => '#21759B', |
| 568 | 'textDecoration' => 'underline', |
| 569 | ], |
| 570 | 'wrapper' => [ |
| 571 | 'backgroundColor' => '#ffffff', |
| 572 | ], |
| 573 | 'body' => [ |
| 574 | 'backgroundColor' => '#f6f6f6', |
| 575 | ], |
| 576 | ], |
| 577 | ]; |
| 578 | } |
| 579 | |
| 580 | private function getThumbnail() { |
| 581 | return $this->template_image_url . '/thumbnail.20190411-1500.jpg'; |
| 582 | } |
| 583 | } |
| 584 |