I'm utilizing the notification and trying to implement a click event similar to this example:
My problem is that I need to get a custom field to my click event (i.e. the ID of a database record) that will be different for each notification. Is there anyway to pass custom data to the notification other than what is in the NotificationModel?
To get around this, I ended up serializing an object into the NotificationModel.Text field and then deserializing it in the Notification template. It works, but it would be nice if there was a better way to do this.