Photo_Shop admin-mail with more information Photo_Shop admin-mail with more information
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Photo_Shop admin-mail with more information

Started by yogiflop, March 17, 2008, 08:54:06 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

yogiflop

Hello, me again,

is it possible to give more information in the admin mail about the person who ordered photos.

like:
username
email
user_profile1
user_profile2
user_profile3
user_profile4
user_profile5

thanks for working on it.

Stramm

it's already coded
somehow I just have forgotton for some weeks to upload v1.3.6

Sy

What is the placeholder to print the users email address?  I tried {EMAIL} but that doesn't work.

Stramm

hmm, looks like I haven't added the user email

in photo_shop_checkout.php find
'{USER_NAME}' => (USER_NAME),

below add
'{USER_EMAIL}' => $email,


find
$user_info = photoshop_user_details(USER_ID);

below add
$email = $user_info['user_email'];


then the placeholder is {USER_EMAIL}

Sy