{
    "name": "New Post Email Notification",
    "description": "Send an email notification to admins when a new post is published.",
    "category": "notifications",
    "trigger": "publish_post",
    "config": {
        "trigger": {
            "type": "publish_post",
            "config": {
                "post_type": "post"
            },
            "actions": [
                {
                    "action_type": "send_email",
                    "config": {
                        "email_source": "template",
                        "email_template": "new_post",
                        "to": "{{admin_email}}"
                    }
                }
            ]
        }
    }
}