forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 plugins => Topic started by: pda4de on July 14, 2007, 10:08:31 am

Title: Photo Shop: Email notification subject line change?
Post by: pda4de on July 14, 2007, 10:08:31 am
Hello Stramm,
I’m working with the email I receive when an order is placed.
Is it possible to work with the e-mail subject line?
I think the change should be made in, photo_shop_checkout.php
Somewhere in this area…but I'm not sure.

      if(photoshop_email_the_user($lang_photoshop_email_order.$invoice, $lang_photoshop['email_subject_order'])){

         //when user got his email, then send to admin

         photoshop_email_the_user($lang_photoshop_email_admin.$invoice, $lang_photoshop['email_subject_order_admin'], true);

I would like the subject line to read "'email_subject_order_admin' from {USER_NAME}".
Is it possible for you to help me make this change?
Thanks, Paul
Title: Re: Photo Shop: Email notification subject line change?
Post by: zac on July 15, 2007, 03:19:40 am
Is this what you looking for ?

http://forum.coppermine-gallery.net/index.php?topic=32231.msg211447#msg211447

Title: Re: Photo Shop: Email notification subject line change?
Post by: Stramm on July 15, 2007, 01:01:12 pm
the subject you can find and modify in the lang file
eg. to 'Hi admin, you received a new order from '

now you have to do a lil modification in the photo_shop_checkout.php
(again as example for the mail to the admin)
Code: [Select]
if(photoshop_email_the_user($lang_photoshop_email_order.$invoice, $lang_photoshop['email_subject_order'])){
to
Code: [Select]
if(photoshop_email_the_user($lang_photoshop_email_order.$invoice, $lang_photoshop['email_subject_order'].USER_NAME)){
See constant USER_NAME holds the user name of the logged in user... you just have to add it to the subject
Title: Re: Photo Shop: Email notification subject line change?
Post by: pda4de on July 16, 2007, 06:15:01 pm
Thanks for the tip!

Paul