Jump to content

[SOLVED] How modify automatic e-mails


superskyman100

Recommended Posts

Hello,

I'm in PS 1.7.5

I'd like to modify the structure of this ugly email automatically sent to customers throughout the backoffice (customer service > customer service > click on the line corresponding to message)

Untitled-4.thumb.jpg.3c8b41e7e55a636981f3b670899e31c0.jpg

I also would like to modify/hide the ugly #ct1#tcdZSdTSKVuaKS reference of mail

 

How could i do that ?

 

Thanks 

Edited by superskyman100 (see edit history)
Link to comment
Share on other sites

Hi, you can find this email in

  • Subject email in file: controllers\admin\AdminCustomerThreadsController.php

Code:

 $this->trans(
                            'An answer to your message is available #ct%thread_id% #tc%thread_token%',
                            array(
                                '%thread_id%' => $ct->id,
                                '%thread_token%' => $ct->token,
                            ),
                            'Emails.Subject',
                            $language->locale
                        ),

Email body in file: ROOT\mails\en\reply_msg.html and ROOT\mails\en\reply_msg.txt

Thanks.

  • Thanks 1
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...