mailpoet
/
lib
/
EmailEditor
/
Integrations
/
MailPoet
/
Patterns
/
Library
/
AskForReviewPostPurchasePattern.php
AbandonedCartPattern.php
4 months ago
AbandonedCartReminderPattern.php
1 month ago
AbandonedCartWithDiscountPattern.php
1 month ago
AbstractAbandonedCartPattern.php
5 months ago
AskForReviewPostPurchasePattern.php
1 month ago
BirthdayEmailPattern.php
1 month ago
BookingAutomationEmailPattern.php
1 month ago
CategoryPurchaseFollowUpPattern.php
1 month ago
EducationalCampaignPattern.php
1 month ago
EventInvitationPattern.php
3 months ago
FirstPurchaseThankYouPattern.php
1 month ago
NewArrivalsAnnouncementPattern.php
3 months ago
NewProductsAnnouncementPattern.php
3 months ago
NewsletterPattern.php
4 months ago
PostPurchaseThankYouPattern.php
1 month ago
ProductPurchaseFollowUpPattern.php
1 month ago
ProductRestockNotificationPattern.php
5 months ago
SaleAnnouncementPattern.php
3 months ago
SubscriptionAutomationEmailPattern.php
1 month ago
TagPurchaseFollowUpPattern.php
1 month ago
WelcomeEmailPattern.php
1 month ago
WelcomeWithDiscountEmailPattern.php
1 month ago
WinBackCustomerPattern.php
1 month ago
index.php
1 year ago
AskForReviewPostPurchasePattern.php
201 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\EmailEditor\Integrations\MailPoet\Patterns\Library; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\EmailEditor\Integrations\MailPoet\EmailEditor; |
| 9 | use MailPoet\EmailEditor\Integrations\MailPoet\Patterns\Pattern; |
| 10 | use MailPoet\Util\CdnAssetUrl; |
| 11 | |
| 12 | class AskForReviewPostPurchasePattern extends Pattern { |
| 13 | protected $name = 'ask-for-review-post-purchase'; |
| 14 | protected $block_types = ['core/post-content']; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 15 | protected $template_types = ['email-template']; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 16 | protected $categories = ['purchase']; |
| 17 | protected $post_types = [EmailEditor::MAILPOET_EMAIL_POST_TYPE]; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 18 | |
| 19 | /** @var string */ |
| 20 | private $variant; |
| 21 | |
| 22 | public function __construct( |
| 23 | CdnAssetUrl $cdnAssetUrl, |
| 24 | string $variant = 'ask' |
| 25 | ) { |
| 26 | parent::__construct($cdnAssetUrl); |
| 27 | $this->variant = $variant; |
| 28 | if ($variant === 'positive-follow-up') { |
| 29 | $this->name = 'positive-review-follow-up'; |
| 30 | $this->categories = ['review']; |
| 31 | } elseif ($variant === 'negative-follow-up') { |
| 32 | $this->name = 'negative-review-follow-up'; |
| 33 | $this->categories = ['review']; |
| 34 | } elseif ($variant === 'reward-positive') { |
| 35 | $this->name = 'reward-positive-reviewer'; |
| 36 | $this->categories = ['review']; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | protected function get_content(): string { // phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
| 41 | if ($this->variant === 'positive-follow-up') { |
| 42 | return $this->getPositiveFollowUpContent(); |
| 43 | } |
| 44 | |
| 45 | if ($this->variant === 'negative-follow-up') { |
| 46 | return $this->getNegativeFollowUpContent(); |
| 47 | } |
| 48 | |
| 49 | if ($this->variant === 'reward-positive') { |
| 50 | return $this->getRewardPositiveContent(); |
| 51 | } |
| 52 | |
| 53 | return ' |
| 54 | <!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|40","left":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} --> |
| 55 | <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)"> |
| 56 | <!-- wp:heading {"level":1} --> |
| 57 | <h1 class="wp-block-heading">' . __('How was your experience?', 'mailpoet') . '</h1> |
| 58 | <!-- /wp:heading --> |
| 59 | |
| 60 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|30"}}}} --> |
| 61 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--30);font-size:16px">' . |
| 62 | __('Thanks again for your order. Your feedback helps other shoppers choose with confidence.', 'mailpoet') . '</p> |
| 63 | <!-- /wp:paragraph --> |
| 64 | |
| 65 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|20"}}}} --> |
| 66 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--20);font-size:16px">' . |
| 67 | __('If you have a minute, your review would mean a lot.', 'mailpoet') . '</p> |
| 68 | <!-- /wp:paragraph --> |
| 69 | |
| 70 | <!-- wp:buttons {"style":{"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|20"}}},"layout":{"type":"flex","justifyContent":"left"}} --> |
| 71 | <div class="wp-block-buttons" style="padding-top:0;padding-bottom:var(--wp--preset--spacing--20)"> |
| 72 | <!-- wp:button {"url":"[woocommerce/order-review-url]","style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"var:preset|spacing|10","bottom":"var:preset|spacing|10","left":"var:preset|spacing|20","right":"var:preset|spacing|20"}}}} --> |
| 73 | <div class="wp-block-button"><a class="wp-block-button__link has-custom-font-size wp-element-button" style="padding-top:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--20);padding-right:var(--wp--preset--spacing--20);font-size:16px" href="[woocommerce/order-review-url]">' . __('Leave a review', 'mailpoet') . '</a></div> |
| 74 | <!-- /wp:button --> |
| 75 | </div> |
| 76 | <!-- /wp:buttons --> |
| 77 | |
| 78 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"0"}}}} --> |
| 79 | <p style="padding-top:var(--wp--preset--spacing--30);padding-bottom:0;font-size:16px">' . |
| 80 | __('We appreciate your time and hope to see you again soon.', 'mailpoet') . '</p> |
| 81 | <!-- /wp:paragraph --> |
| 82 | |
| 83 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 84 | <p class="has-medium-font-size">–<!--[woocommerce/site-title]--></p> |
| 85 | <!-- /wp:paragraph --> |
| 86 | </div> |
| 87 | <!-- /wp:group --> |
| 88 | '; |
| 89 | } |
| 90 | |
| 91 | private function getPositiveFollowUpContent(): string { |
| 92 | return ' |
| 93 | <!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|40","left":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} --> |
| 94 | <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)"> |
| 95 | <!-- wp:heading {"level":1} --> |
| 96 | <h1 class="wp-block-heading">' . __('Thanks for your review!', 'mailpoet') . '</h1> |
| 97 | <!-- /wp:heading --> |
| 98 | |
| 99 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|30"}}}} --> |
| 100 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--30);font-size:16px">' . __('Your review made our day. We’re thrilled you had a good experience and grateful that you took the time to share it.', 'mailpoet') . '</p> |
| 101 | <!-- /wp:paragraph --> |
| 102 | |
| 103 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|30"}}}} --> |
| 104 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--30);font-size:16px">' . __('Reviews like yours help other shoppers choose with confidence. Thanks for being part of our community.', 'mailpoet') . '</p> |
| 105 | <!-- /wp:paragraph --> |
| 106 | |
| 107 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 108 | <p class="has-medium-font-size">' . __('With appreciation,', 'mailpoet') . '</p> |
| 109 | <!-- /wp:paragraph --> |
| 110 | |
| 111 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 112 | <p class="has-medium-font-size">–<!--[woocommerce/site-title]--></p> |
| 113 | <!-- /wp:paragraph --> |
| 114 | </div> |
| 115 | <!-- /wp:group --> |
| 116 | '; |
| 117 | } |
| 118 | |
| 119 | private function getNegativeFollowUpContent(): string { |
| 120 | return ' |
| 121 | <!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|40","left":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} --> |
| 122 | <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)"> |
| 123 | <!-- wp:heading {"level":1} --> |
| 124 | <h1 class="wp-block-heading">' . __('Sorry to hear that', 'mailpoet') . '</h1> |
| 125 | <!-- /wp:heading --> |
| 126 | |
| 127 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|30"}}}} --> |
| 128 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--30);font-size:16px">' . __('Thank you for being honest in your review. We’re sorry your experience did not meet expectations.', 'mailpoet') . '</p> |
| 129 | <!-- /wp:paragraph --> |
| 130 | |
| 131 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|30"}}}} --> |
| 132 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--30);font-size:16px">' . __('We’d like to understand what happened and see how we can make things right. Reply to this email and our team will help.', 'mailpoet') . '</p> |
| 133 | <!-- /wp:paragraph --> |
| 134 | |
| 135 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 136 | <p class="has-medium-font-size">' . __('We appreciate the chance to improve,', 'mailpoet') . '</p> |
| 137 | <!-- /wp:paragraph --> |
| 138 | |
| 139 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 140 | <p class="has-medium-font-size">–<!--[woocommerce/site-title]--></p> |
| 141 | <!-- /wp:paragraph --> |
| 142 | </div> |
| 143 | <!-- /wp:group --> |
| 144 | '; |
| 145 | } |
| 146 | |
| 147 | private function getRewardPositiveContent(): string { |
| 148 | return ' |
| 149 | <!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|40","left":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} --> |
| 150 | <div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)"> |
| 151 | <!-- wp:heading {"level":1} --> |
| 152 | <h1 class="wp-block-heading">' . __('Thanks for your review!', 'mailpoet') . '</h1> |
| 153 | <!-- /wp:heading --> |
| 154 | |
| 155 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|30"}}}} --> |
| 156 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--30);font-size:16px">' . __('Thank you for taking the time to leave such a thoughtful review. We’re grateful for your support and happy to hear you enjoyed your purchase.', 'mailpoet') . '</p> |
| 157 | <!-- /wp:paragraph --> |
| 158 | |
| 159 | <!-- wp:paragraph {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"0","bottom":"var:preset|spacing|20"}}}} --> |
| 160 | <p style="padding-top:0;padding-bottom:var(--wp--preset--spacing--20);font-size:16px">' . __('As a thank you, here’s a discount coupon for your next order:', 'mailpoet') . '</p> |
| 161 | <!-- /wp:paragraph --> |
| 162 | |
| 163 | ' . $this->getGeneratedCouponBlock('left', 10, 10) . ' |
| 164 | |
| 165 | <!-- wp:buttons {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|30"}}},"layout":{"type":"flex","justifyContent":"left"}} --> |
| 166 | <div class="wp-block-buttons" style="padding-bottom:var(--wp--preset--spacing--30)"> |
| 167 | <!-- wp:button {"style":{"typography":{"fontSize":"16px"},"spacing":{"padding":{"top":"var:preset|spacing|10","bottom":"var:preset|spacing|10","left":"var:preset|spacing|20","right":"var:preset|spacing|20"}}}} --> |
| 168 | <div class="wp-block-button"><a class="wp-block-button__link has-custom-font-size wp-element-button" style="padding-top:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--20);padding-right:var(--wp--preset--spacing--20);font-size:16px" href="[mailpoet/site-homepage-url]">' . __('Shop again', 'mailpoet') . '</a></div> |
| 169 | <!-- /wp:button --> |
| 170 | </div> |
| 171 | <!-- /wp:buttons --> |
| 172 | |
| 173 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 174 | <p class="has-medium-font-size">' . __('See you soon,', 'mailpoet') . '</p> |
| 175 | <!-- /wp:paragraph --> |
| 176 | |
| 177 | <!-- wp:paragraph {"fontSize":"medium"} --> |
| 178 | <p class="has-medium-font-size">–<!--[woocommerce/site-title]--></p> |
| 179 | <!-- /wp:paragraph --> |
| 180 | </div> |
| 181 | <!-- /wp:group --> |
| 182 | '; |
| 183 | } |
| 184 | |
| 185 | protected function get_title(): string { // phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
| 186 | if ($this->variant === 'positive-follow-up') { |
| 187 | return __('Positive review follow-up', 'mailpoet'); |
| 188 | } |
| 189 | |
| 190 | if ($this->variant === 'negative-follow-up') { |
| 191 | return __('Negative review follow-up', 'mailpoet'); |
| 192 | } |
| 193 | |
| 194 | if ($this->variant === 'reward-positive') { |
| 195 | return __('Reward positive reviewer', 'mailpoet'); |
| 196 | } |
| 197 | |
| 198 | return __('Ask for a product review', 'mailpoet'); |
| 199 | } |
| 200 | } |
| 201 |