mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
fad017d842
We now optionally add a Variable Email Return Path to every email we send. This allows us to cleanly handle email bounces, which in turn will improve deliverability.
5 lines
127 B
Ruby
5 lines
127 B
Ruby
class AddBounceKeyToEmailLog < ActiveRecord::Migration
|
|
def change
|
|
add_column :email_logs, :bounce_key, :string
|
|
end
|
|
end
|