Add reply-to field to wizard

[MAILPOET-1573]
This commit is contained in:
Pavel Dohnal
2019-01-22 16:10:48 +01:00
parent 889712af5c
commit 26284b3a8e
4 changed files with 35 additions and 2 deletions

View File

@@ -343,7 +343,8 @@ class Menu {
'is_mp2_migration_complete' => (bool)Setting::getValue('mailpoet_migration_complete'),
'is_woocommerce_active' => class_exists('WooCommerce'),
'finish_wizard_url' => admin_url('admin.php?page=' . self::MAIN_PAGE_SLUG),
'sender' => Setting::getValue('sender')
'sender' => Setting::getValue('sender'),
'reply_to' => Setting::getValue('reply_to'),
];
$this->displayPage('welcome_wizard.html', $data);
}