Easy way to Print Customer Information

Good morning all,



Is there a easier way to print the customer information? We keep hard copies of the customer’s registration information and currently, I’m forced to copy and paste customer info from the User tab.



I know when a customer first registers they receive an email to confirm their information is correct. The email has all of their registration details. If the first option isn’t available is there a way to CC myself that Customer Information Confirmation email?



Thank you!

[quote name='phantomcables' timestamp='1314107996' post='120133']

Good morning all,



Is there a easier way to print the customer information? We keep hard copies of the customer's registration information and currently, I'm forced to copy and paste customer info from the User tab.



I know when a customer first registers they receive an email to confirm their information is correct. The email has all of their registration details. If the first option isn't available is there a way to CC myself that Customer Information Confirmation email?



Thank you!

[/quote]

try to do export of customers

Oh, and I just discovered that apparently one can Export selected user information. However, the csv file, the way it's been formatted is not exactly print friendly.



Thanks!

Thanks N1XUS, I just tried that. The exported file format for a complete list of the customers, but it's not so great when one is looking to print the customer info individually. kind of like the format for the customer info confirmation email.

I'm trying to find the file to edit it so I can basically add my e-mail address to the senders list. So I can get a copy of the e-mail the customer gets. The “New customer profile confirmation” email.



(Attached)

Email Screens.jpg

PLEASE MAKE A BACKUP - I CANNOT BE RESPONSIBLE IF YOU MUFF THIS UP ( OR IF I MUFF this up :blink: )



I ASSUME you are using 2.2.1



/core/fn.users.php



Find

		<br />
		// Notify customer about profile add/update<br />
		if ($action == 'add') {<br />
			fn_send_mail($user_data['email'], Registry::get('settings.Company.company_users_department'), 'profiles/create_profile_subj.tpl', 'profiles/create_profile.tpl', '', $lang_code);<br />
					} else {<br />

```<br />
<br />
Chang to <br />
```php
<br />
		// Notify customer about profile add/update<br />
		if ($action == 'add') {<br />
			fn_send_mail($user_data['email'], Registry::get('settings.Company.company_users_department'), 'profiles/create_profile_subj.tpl', 'profiles/create_profile.tpl', '', $lang_code);<br />
			fn_send_mail(Registry::get('settings.Company.company_users_department'), Registry::get('settings.Company.company_users_department'), 'profiles/create_profile_subj.tpl', 'profiles/create_profile.tpl', '', $lang_code);<br />
		} else {<br />

I have corrected a typo in the code of my previous post

[font=“Verdana”]What does it look like now after the modification??



Does it look good? :)



Screenshot people! :P



Thank you![/font]

[quote name=‘kogi’ timestamp=‘1314423454’ post=‘120451’]

PLEASE MAKE A BACKUP - I CANNOT BE RESPONSIBLE IF YOU MUFF THIS UP ( OR IF I MUFF this up :blink: )



I ASSUME you are using 2.2.1



/core/fn.users.php



Find

		<br />
		// Notify customer about profile add/update<br />
		if ($action == 'add') {<br />
			fn_send_mail($user_data['email'], Registry::get('settings.Company.company_users_department'), 'profiles/create_profile_subj.tpl', 'profiles/create_profile.tpl', '', $lang_code);<br />
					} else {<br />

```<br />
<br />
Chang to <br />
```php
<br />
		// Notify customer about profile add/update<br />
		if ($action == 'add') {<br />
			fn_send_mail($user_data['email'], Registry::get('settings.Company.company_users_department'), 'profiles/create_profile_subj.tpl', 'profiles/create_profile.tpl', '', $lang_code);<br />
			fn_send_mail(Registry::get('settings.Company.company_users_department'), Registry::get('settings.Company.company_users_department'), 'profiles/create_profile_subj.tpl', 'profiles/create_profile.tpl', '', $lang_code);<br />
		} else {<br />

```<br />
[/quote]<br />
<br />
My apologies for the late reply - I was away on vacation. I'm using 2.1.5. When I couldn't figure out how to do this, we hired Perception System to make the modification for us. I will post the changed they made when it is finished.<br />
<br />
Thank you very much for your time and assistance.