Jump to content

Remove [no_sync] from customer message email subject line


Dan1

Recommended Posts

PS 1.7.6 email notifications for customer messages through the contact form come with this subject:

[Shop Name] Message from contact form [no_sync]

How to remove the [no_sync] part?

In controllers/admin/AdminCustomerThreadsController.php I find:

Line 1099

                $new_ct = (Configuration::get('PS_SAV_IMAP_CREATE_THREADS') && !$match_found && (strpos($subject, '[no_sync]') == false));

Should this be edited/how?

Link to comment
Share on other sites

14 minutes ago, Rolige said:

You can find it on modules\contactform\contactform.php line 614.

Removing [no_sync]' from:

                        $this->trans('Message from contact form', [], 'Emails.Subject').' [no_sync]',

like this:

                        $this->trans('Message from contact form', [], 'Emails.Subject').',
                        $var_list,

Made the whole contact page disappear. Did I do it wrong?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...