Notification
WordPress.orgExtensionsSupport
Version 9
Version 9
  • Notification – Custom Notifications and Alerts for WordPress
  • Updating to v9
  • Known issues
  • πŸ€Έβ€β™€οΈ User guide
    • Update broke my site
    • How Notification plugin works
    • Who can use this plugin
    • How to create Notifications
    • Troubleshooting
    • Advanced
      • How to escape { character
      • Background processing
      • How to setup different FROM address for different Notifications
      • Custom Post Type support
      • Disable upselling
      • How to send HTML Emails
  • πŸ”§Developer
    • General
      • Plugin loading chain
      • Runtime
      • Extension possibilities
      • Creating an extension
      • Customizations
      • Bundling Notification plugin
      • White label mode
    • Notifications
      • Suppressing the Notification
      • JSON synchronization
      • Programmatic Notifications
    • Triggers
      • List of all default Triggers
      • Custom Trigger
      • Enable support for non-public Custom Post Type
      • Adding Merge Tags to existing Triggers
    • Carriers
      • Custom Carrier
      • Adding custom fields to Carrier form
      • Suppressing the Carrier
    • Recipients
      • Custom Recipient
    • Snippets
      • General
        • Automatic Trigger testing
        • Allow other roles to edit Notifications
        • Programmatic Notification with manual Trigger
        • Background Processing filter
      • Triggers
        • Post
        • User
      • Integations
        • WP All Import
        • MemberPress
  • 🧩Extensions
    • Installation
    • Planned extensions
    • 3rd Party Extensions
    • Custom Fields
      • v2.2
      • v1.4
      • v1.3
    • Conditionals
    • Email Attachments
    • Push
    • Scheduled Triggers
    • Slack
    • Twilio
    • Webhooks
Powered by GitBook
On this page
  1. Developer
  2. Snippets
  3. General

Automatic Trigger testing

If you even wondered how you can automatically test your Triggers without setup them up via wp-admin, this guide is for you.

Use below snippet to create an email notification in background, with one Administrator recipient and all the merge tags in the content. The subject is Trigger name.

add_action(
	'notification/trigger/registered',
	function($trigger) {
		$content = '';
		foreach ($trigger->getMergeTags( 'visible' ) as $merge_tag) {
			$content .= $merge_tag->getName() . ': {' . $merge_tag->getSlug() . '}' . "\r\n\r\n";
		}

		$config = [
			'hash' => 'notification_' . uniqid(),
			'title' => $trigger->getName(),
			'trigger' => $trigger,
			'carriers' => [
				'email' => [
					'activated' => true,
					'enabled' => true,
					'subject' => $trigger->getName(),
					'body' => $content,
					'recipients' => [
						[
							'type' => 'administrator',
							'recipient' => '',
						],
					],
				],
			],
			'enabled' => true,
			'extras' => [],
			'version' => time(),
		];

		\BracketSpace\Notification\Register::notificationFromArray($config);
	}
);
PreviousGeneralNextAllow other roles to edit Notifications

Last updated 7 months ago

πŸ”§