coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 plugins => Topic started by: yogiflop on March 17, 2008, 08:54:06 PM

Title: Photo_Shop admin-mail with more information
Post by: yogiflop on March 17, 2008, 08:54:06 PM
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.
Title: Re: Photo_Shop admin-mail with more information
Post by: Stramm on March 18, 2008, 09:07:31 AM
it's already coded
somehow I just have forgotton for some weeks to upload v1.3.6
Title: Re: Photo_Shop admin-mail with more information
Post by: Sy on April 11, 2008, 07:24:54 PM
What is the placeholder to print the users email address?  I tried {EMAIL} but that doesn't work.
Title: Re: Photo_Shop admin-mail with more information
Post by: Stramm on April 11, 2008, 07:34:05 PM
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}
Title: Re: Photo_Shop admin-mail with more information
Post by: Sy on April 11, 2008, 07:40:43 PM
WOW.  Thanks for the uber speedy reply!