Zen Cart Logo
Forums / General Questions / Confirmation Email--add two things

Confirmation Email--add two things

Views: 739

Results 1 to 4 of 4
27 Apr 2012, 7:42 PM
#1
timhersh avatar

timhersh

Zen Follower

Join Date:
Aug 2008
Posts:
274
Plugin Contributions:
0

Confirmation Email--add two things

2 questions I can't really find the answer for. I tried to add it manually to the confirmation html file but it didnt' work

  1. I need to add a link to that email. We are allowing the customer to batch upload some pictures and to do this I need to add a generic link to the confirmation email...for example

    To upload your pictures please visit https://www.domain.com/upload

that should be easy but it won't work.I'm using 1.39

  1. I need to add "shipment method" to the confirmation email. So the client can tell it it is a local delivery or instore pickup...both are free

any ideas?

thanks

28 Apr 2012, 2:33 PM
#2
joejoejoe avatar

joejoejoe

Zen Follower

Join Date:
Oct 2011
Location:
AZ
Posts:
383
Plugin Contributions:
0

Re: Confirmation Email--add two things

Can't help you with number 2. For number one - why doesn't it work? Is the / in the URL causing trouble? I had trouble adding text to my emails because I wanted to use an apostrophe - turns out you have to "escape" it first. Same goes for the forward slash. I think the escape key for that is another forward slash, but googling php escapes text might find you a better explanation/tutorial. Or you can try posting everything you added to the confirmation file, and someone will be able to point out what you need to tweak on it.

30 Apr 2012, 4:38 AM
#3
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
177

Re: Confirmation Email--add two things

#2 - The shipping method selected by the customer is already included in the confirmation email.

2 May 2012, 1:16 PM
#4
timhersh avatar

timhersh

Zen Follower

Join Date:
Aug 2008
Posts:
274
Plugin Contributions:
0

Re: Confirmation Email--add two things

Thank you for the reply.

I figured out the shipping issue, it is a different issue that is causing the problem

For the ability to add the link to the confirmation email it would be great if anyone has any idea what is wrong with this. Below is my code from the file located in
/email/email_template_checkout.html

***this the part I edited

<!-- Header Section --> <div class="header"> <img src="email/header.jpg" alt="logo" /> </div> <!-- Content Section --> <div class="content"> <div class="content-line"> <p>$EMAIL_TEXT_HEADER <br /> <br /> $EMAIL_FIRST_NAME $EMAIL_LAST_NAME,<br /> $EMAIL_THANKS_FOR_SHOPPING<br /> $EMAIL_DETAILS_FOLLOW<br /> </p> <p><a href="http://myfamilycoloringbook.com/orders/">Click here to upload your images </a><br /> *************************************************************************<br> ************************************************************************* <br> <br> ************************************************************************* $INTRO_ORDER_NUM_TITLE $INTRO_ORDER_NUMBER<br /> $INTRO_DATE_TITLE $INTRO_DATE_ORDERED<br /> <a href="$INTRO_URL_VALUE">$INTRO_URL_TEXT</a> </p> <p>************************************************************************* </p> </div>