Edit Email That Customer Receives After Registering.

I would like to add a message to the email that customers receive after they register.

The standard message says…



“[color=#006400][font=arial, verdana, helvetica, sans-serif][size=3]Dear jim,[/size][/font][/color]



[color=#006400][font=arial, verdana, helvetica, sans-serif][size=3]Thank you for becoming a registered user at [/size][/font][/color][color=#ff0000][font=arial, verdana, helvetica, sans-serif][size=3]MyStore[/size][/font][/color][color=#000000][font=arial, verdana, helvetica, sans-serif][size=3].”[/size][/font][/color]



[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]Now I know the part I made in green can be found in languages.[/size][/font][/color]

[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]But I want to add add additional message after all this.[/size][/font][/color]



[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]Any suggestions?[/size][/font][/color]

[quote name='jimmyod' timestamp='1402747323' post='185723']

I would like to add a message to the email that customers receive after they register.

The standard message says…



“[color=#006400][font=arial, verdana, helvetica, sans-serif][size=3]Dear jim,[/size][/font][/color]



[color=#006400][font=arial, verdana, helvetica, sans-serif][size=3]Thank you for becoming a registered user at [/size][/font][/color][color=#ff0000][font=arial, verdana, helvetica, sans-serif][size=3]MyStore[/size][/font][/color][color=#000000][font=arial, verdana, helvetica, sans-serif][size=3].”[/size][/font][/color]



[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]Now I know the part I made in green can be found in languages.[/size][/font][/color]

[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]But I want to add add additional message after all this.[/size][/font][/color]



[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]Any suggestions?[/size][/font][/color]

[/quote]



Template with email content is located in:


design/themes/basic/mail/templates/profiles/create_profile.tpl



As far as you can see two additional templates are included in this file:


design/themes/basic/mail/templates/profiles/profiles_info.tpl


design/themes/basic/mail/templates/common/letter_footer.tpl



So, you should edit them.

[quote name='jimmyod' timestamp='1402747323' post='185723']

I would like to add a message to the email that customers receive after they register.

The standard message says…



“[color=#006400][font=arial, verdana, helvetica, sans-serif][size=3]Dear jim,[/size][/font][/color]



[color=#006400][font=arial, verdana, helvetica, sans-serif][size=3]Thank you for becoming a registered user at [/size][/font][/color][color=#ff0000][font=arial, verdana, helvetica, sans-serif][size=3]MyStore[/size][/font][/color][color=#000000][font=arial, verdana, helvetica, sans-serif][size=3].”[/size][/font][/color]



[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]Now I know the part I made in green can be found in languages.[/size][/font][/color]

[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]But I want to add add additional message after all this.[/size][/font][/color]



[color=#000000][font=arial, verdana, helvetica, sans-serif][size=3]Any suggestions?[/size][/font][/color]

[/quote]



In the latest versions of CS-Cart there is the profiles:create_profile hook in the registration e-mail. Use it to add additional message

[quote name='Cart-Power' timestamp='1402750852' post='185724']

Template with email content is located in:


design/themes/basic/mail/templates/profiles/create_profile.tpl



As far as you can see two additional templates are included in this file:


design/themes/basic/mail/templates/profiles/profiles_info.tpl


design/themes/basic/mail/templates/common/letter_footer.tpl



So, you should edit them.

[/quote]Thank you. This worked!

[quote name=‘Cart-Power’ timestamp=‘1402750852’ post=‘185724’]

[…]

So, you should edit them.

[/quote]

Great and thanks, but, could you please clarify what kind of modification need these files?

[quote name=‘eComLabs’ timestamp=‘1402907651’ post=‘185798’]

In the latest versions of CS-Cart there is the profiles:create_profile hook in the registration e-mail. Use it to add additional message

[/quote]

I have cscart 4.2.2 but would be great if you can give me a with some more clear explanation about how to create these profiles.

I will really appreciate your help.

[quote name=‘jimmyod’ timestamp=‘1402921484’ post=‘185819’]

Thank you. This worked!

[/quote]

what kind of modifications you did? thanks to all for share your knowledge ! 8)



------------------------------------------------------------------------------------------------



Got it.



Example: To edit the subjet, just open the file: [color=#ff0000]create_profile_subj.tpl[/color] and take a look

in my case (4.2.2) is this:


<br />
{assign var='u_type' value=$user_data.user_type|fn_get_user_type_description|lower}<br />
{$company_data.company_name nofilter}: {__("new_profile_notification", ["[user_type]" => $u_type])}<br />

```<br />
<br />
Then go to administration ► Languages ► Translations ► ✙ [Add new language variable]<br />
► Language variable: [Your own text here, example: "whooo thanks for register your account!"]  ▐  Value: [[u]New_profile_notification[/u]]<br />
<br />
Now let's take a look into: [color=#ff0000]create_profile.tpl[/color]<br />
Same process! [...][...][...]✙ [Add new language variable]<br />
Language variable: [whatever you want to put here xxx at: {your company}]  ▐  Value: [[u]create_profile_notification_header[/u]]<br />
<br />
Done! <img src="upload://oPnLkqdJc33Dyf2uA3TQwRkfhwd.gif" class="bbc_emoticon" alt="8)">