Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ordernumber in mail/subject


Lasseroth

Recommended Posts

I have written the same question in my native language (swedish) forum, no help there.

Maybe there is no solution to the problem?

In my old asp shop I got my emails with the number in subject.

I collected all in a file. whenever I need to answer any question regarding

a customer I could easily find it. In oscommerce all mails look exactly the same.

This way I have to go over many of them to find what I am looking for.

Only option is to copy and name them and store them as doc/odt files somewhere else.

My shop is slimmed down, no login/registration. Customer get an html mail.

Solvable?

Link to comment
Share on other sites

I have written the same question in my native language (swedish) forum, no help there.

Maybe there is no solution to the problem?

In my old asp shop I got my emails with the number in subject.

I collected all in a file. whenever I need to answer any question regarding

a customer I could easily find it. In oscommerce all mails look exactly the same.

This way I have to go over many of them to find what I am looking for.

Only option is to copy and name them and store them as doc/odt files somewhere else.

My shop is slimmed down, no login/registration. Customer get an html mail.

Solvable?

lars@roth.se

Already solved, if you check out the contributions area of this site.

Link to comment
Share on other sites

Already solved, if you check out the contributions area of this site.

I can really understand answers like "already solved, look..."

We are asking the same questions over and over again without bothering to see if it is already there.

I can assure you though, I have looked without finding the solution to my problem.

I have this as an answer to my question about changing the html mail.

It changes it to number alright but unfortunately only to the buyers, not the one I get

and I do not know where to change that and how.

I was also told that I was not allowed to offer money by moderator.

 

 

in checkout_process:

 

tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

 

 

Replace with:

 

tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], 'Order '.$insert_id , $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

 

--

Link to comment
Share on other sites

I will certainly try, thanks.

Here is the solution or at least A solution

modified this line :

 

// send emails to other people

if (SEND_EXTRA_ORDER_EMAILS_TO != '') {

tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, 'Order '.$insert_id, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS);

}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...