Spaces:
No application file
No application file
File size: 9,215 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
<?php
namespace Mautic\EmailBundle;
/**
* Events available for EmailBundle.
*/
final class EmailEvents
{
/**
* The mautic.email_token_replacement event is thrown right before the content is returned.
*
* The event listener receives a
* Mautic\CoreBundle\Event\TokenReplacementEvent instance.
*
* @var string
*/
public const TOKEN_REPLACEMENT = 'mautic.email_token_replacement';
/**
* The mautic.email_address_token_replacement event is thrown right before a email address token needs replacement.
*
* The event listener receives a
* Mautic\CoreBundle\Event\TokenReplacementEvent instance.
*
* @var string
*/
public const ON_EMAIL_ADDRESS_TOKEN_REPLACEMENT = 'mautic.email_address_token_replacement';
/**
* The mautic.email_on_open event is dispatched when an email is opened.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailOpenEvent instance.
*
* @var string
*/
public const EMAIL_ON_OPEN = 'mautic.email_on_open';
/**
* The mautic.email_on_send event is dispatched when an email is sent.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailSendEvent instance.
*
* @var string
*/
public const EMAIL_ON_SEND = 'mautic.email_on_send';
/**
* The mautic.email_pre_send event is dispatched when an email is clicked.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailSendEvent instance.
*
* @var string
*/
public const EMAIL_PRE_SEND = 'mautic.email_pre_send';
/**
* The mautic.email_on_display event is dispatched when an email is viewed via a browser.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailSendEvent instance.
*
* @var string
*/
public const EMAIL_ON_DISPLAY = 'mautic.email_on_display';
/**
* The mautic.email_on_build event is dispatched before displaying the email builder form to allow adding of tokens.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailEvent instance.
*
* @var string
*/
public const EMAIL_ON_BUILD = 'mautic.email_on_build';
/**
* The mautic.email_pre_save event is dispatched right before a email is persisted.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailEvent instance.
*
* @var string
*/
public const EMAIL_PRE_SAVE = 'mautic.email_pre_save';
/**
* The mautic.email_post_save event is dispatched right after a email is persisted.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailEvent instance.
*
* @var string
*/
public const EMAIL_POST_SAVE = 'mautic.email_post_save';
/**
* The mautic.email_pre_delete event is dispatched prior to when a email is deleted.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailEvent instance.
*
* @var string
*/
public const EMAIL_PRE_DELETE = 'mautic.email_pre_delete';
/**
* The mautic.email_post_delete event is dispatched after a email is deleted.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailEvent instance.
*
* @var string
*/
public const EMAIL_POST_DELETE = 'mautic.email_post_delete';
/**
* The mautic.monitored_email_config event is dispatched during the configuration in order to inject custom folder locations.
*
* The event listener receives a Mautic\CoreBundle\Event\MonitoredEmailEvent instance.
*
* @var string
*/
public const MONITORED_EMAIL_CONFIG = 'mautic.monitored_email_config';
/**
* The mautic.on_email_parse event is dispatched when a monitored email box retrieves messages.
*
* The event listener receives a Mautic\EmailBundle\Event\ParseEmailEvent instance.
*
* @var string
*/
public const EMAIL_PARSE = 'mautic.on_email_parse';
/**
* The mautic.on_email_pre_fetch event is dispatched prior to fetching email through a configured monitored inbox in order to set
* search criteria for the mail to be fetched.
*
* The event listener receives a Mautic\EmailBundle\Event\ParseEmailEvent instance.
*
* @var string
*/
public const EMAIL_PRE_FETCH = 'mautic.on_email_pre_fetch';
/**
* The mautic.on_email_failed event is dispatched when an email has failed to clear the queue and is about to be deleted
* in order to give a bundle a chance to do an action based on failed email if required.
*
* The event listener receives a Mautic\EmailBundle\Event\QueueEmailEvent instance.
*
* @var string
*/
public const EMAIL_FAILED = 'mautic.on_email_failed';
/**
* The mautic.on_email_resend event is dispatched when an attempt to resend an email occurs
* in order to give a bundle a chance to do an action based on failed email if required.
*
* The event listener receives a Mautic\EmailBundle\Event\QueueEmailEvent instance.
*
* @var string
*/
public const EMAIL_RESEND = 'mautic.on_email_resend';
/**
* The mautic.email.on_campaign_batch_action event is dispatched when the campaign action triggers.
*
* The event listener receives a Mautic\CampaignBundle\Event\PendingEvent
*
* @var string
*/
public const ON_CAMPAIGN_BATCH_ACTION = 'mautic.email.on_campaign_batch_action';
/**
* The mautic.email.on_campaign_trigger_decision event is fired when the campaign action triggers.
*
* The event listener receives a
* Mautic\CampaignBundle\Event\CampaignExecutionEvent
*
* @var string
*/
public const ON_CAMPAIGN_TRIGGER_DECISION = 'mautic.email.on_campaign_trigger_decision';
/**
* The mautic.email.on_campaign_trigger_condition event is dispatched when the campaign condition triggers.
*
* The event listener receives a
* Mautic\CampaignBundle\Event\CampaignExecutionEvent
*
* @var string
*/
public const ON_CAMPAIGN_TRIGGER_CONDITION = 'mautic.email.on_campaign_trigger_condition';
/**
* The mautic.email_on_reply event is dispatched when an reply came to an email.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailOpenEvent instance.
*
* @var string
*/
public const EMAIL_ON_REPLY = 'mautic.email_on_reply';
/**
* The mautic.email.on_email_validation event is dispatched when an email is validated through the validator.
*
* The event listener receives a Mautic\EmailBundle\Event\EmailValidationEvent
*
* @var string
*/
public const ON_EMAIL_VALIDATION = 'mautic.email.on_email_validation';
/**
* The mautic.email.on_sent_email_to_user event is dispatched when email is sent to user.
*
* The event listener receives a
* Mautic\PointBundle\Events\TriggerExecutedEvent
*
* @var string
*/
public const ON_SENT_EMAIL_TO_USER = 'mautic.email.on_sent_email_to_user';
/**
* @deprecated 2.13.0; to be removed in 3.0. Listen to ON_CAMPAIGN_BATCH_ACTION instead.
*
* The mautic.email.on_campaign_trigger_action event is fired when the campaign action triggers.
*
* The event listener receives a
* Mautic\CampaignBundle\Event\CampaignExecutionEvent
*
* @var string
*/
public const ON_CAMPAIGN_TRIGGER_ACTION = 'mautic.email.on_campaign_trigger_action';
/**
* The mautic.email.on_transport_webhook event is fired when an email transport service sends Mautic a webhook request.
*
* The event listener receives a
* Mautic\EmailBundle\Event\TransportWebhookEvent
*
* @var string
*/
public const ON_TRANSPORT_WEBHOOK = 'mautic.email.on_transport_webhook';
/**
* The mautic.email.on_open_rate_winner event is fired when there is a need to determine open rate winner.
*
* The event listener receives a
* Mautic\CoreBundle\Event\DetermineWinnerEvent
*
* @var string
*/
public const ON_DETERMINE_OPEN_RATE_WINNER = 'mautic.email.on_open_rate_winner';
/**
* The mautic.email.on_open_rate_winner event is fired when there is a need to determine clickthrough rate winner.
*
* The event listener receives a
* Mautic\CoreBundles\Event\DetermineWinnerEvent
*
* @var string
*/
public const ON_DETERMINE_CLICKTHROUGH_RATE_WINNER = 'mautic.email.on_clickthrough_rate_winner';
/**
* The mautic.email.on_email_stat_pre_save event is fired before an email stat batch is saved.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailStatEvent
*/
public const ON_EMAIL_STAT_PRE_SAVE = 'mautic.email.on_email_stat_pre_save';
/**
* The mautic.email.on_email_stat_post_save event is fired after an email stat batch is saved.
*
* The event listener receives a
* Mautic\EmailBundle\Event\EmailStatEvent
*/
public const ON_EMAIL_STAT_POST_SAVE = 'mautic.email.on_email_stat_post_save';
}
|