wupee
wupee copied to clipboard
Very simple notification system for rails
Update wupee generator to support Rails 5. Currently the generator creates migration files like this: ``` class CreateWupeeNotificationTypes < ActiveRecord::Migration def change create_table :wupee_notification_types do |t| t.string :name t.timestamps null:...
current configuration allow to prevent email only on basis of `receiver` and `notification_type`. ``` Wupee.email_sending_rule = Proc.new do |receiver, notification_type| end ``` In my case I need to prevent email...
Hi, I am trying to send multiple header values. In a regular actionMailer I can use headers['X-Header-Tag'] = ['tag1'] headers['X-Header-Tag'] = ['tag2'] Since wupee is doing a merge of headers...