feat: Ability to customise the email sender name [CW-1629] (#7345)

This commit is contained in:
Tejaswini Chile
2023-07-04 20:46:01 +05:30
committed by GitHub
parent 3c4514c9f7
commit 71837bedf9
16 changed files with 411 additions and 38 deletions

View File

@@ -0,0 +1,5 @@
class AddCustomSenderNameToggle < ActiveRecord::Migration[7.0]
def change
add_column :inboxes, :sender_name_type, :integer, default: 0, null: false
end
end

View File

@@ -0,0 +1,5 @@
class AddSenderNameToIn < ActiveRecord::Migration[7.0]
def change
add_column :inboxes, :business_name, :string, null: true
end
end