[vQmod] Admin HTML Order Confirmation Plus 1.5.x
48 posts
• Page 1 of 3 • 1, 2, 3
[vQmod] Admin HTML Order Confirmation Plus 1.5.x
This vQmod sends an exact copy of the order confirmation email the customer receives in HTML format to the admin and/or extra email addresses specified in your system settings
Added: Order Status
Added: Customer Comments
Tested on 1.5.1.x
Added: Order Status
Added: Customer Comments
Tested on 1.5.1.x
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
thx. works like a charm!
"We help each other to grow". That's the opencart community!
All free mods
Home Based Ebay business Opportunity(not ads)
All free mods
Home Based Ebay business Opportunity(not ads)
-

marcelwoo - Posts: 291
- Joined: Mon Mar 28, 2011 5:45 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Simon, it's neccesary modify order.tpl or not?
Because i only want receive the same order email (current order email, the original).
Thanks!
Because i only want receive the same order email (current order email, the original).
Thanks!
- spirit
- Posts: 296
- Joined: Fri Oct 01, 2010 11:40 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Not necesasary, no
it adds order status and comments the user entered to the email though.
if you are not bothered about that, then replace the entire contents of the xml file with the following
it adds order status and comments the user entered to the email though.
if you are not bothered about that, then replace the entire contents of the xml file with the following
- Code: Select all
<modification>
<id>UKSB Admin HTML Order Email</id>
<version>1.0.0</version>
<vqmver>2.1.5</vqmver>
<author>http://www.opencart-extensions.co.uk</author>
<file name="catalog/model/checkout/order.php">
<operation>
<search position="replace" offset="51"><![CDATA[$subject = sprintf($language->get('text_new_subject'), html_entity_decode($this->config->get('config_name'), ENT_QUOTES, 'UTF-8'), $order_id);]]></search>
<add><![CDATA[ $mail->setTo($this->config->get('config_email'));
$mail->send();]]></add>
</operation>
</file>
</modification>
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
This right?
And for set a specific recipient e-mail? **do you remember my other request? viewtopic.php?f=20&t=45755#p218770
Sorry, but im a child in this way, thanks!
- Code: Select all
// Admin Alert Mail
if ($this->config->get('config_alert_mail')) {
$mail->setTo($this->config->get('config_email'));
$mail->send();
And for set a specific recipient e-mail? **do you remember my other request? viewtopic.php?f=20&t=45755#p218770
Sorry, but im a child in this way, thanks!
- spirit
- Posts: 296
- Joined: Fri Oct 01, 2010 11:40 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
You really have me lost here.
This vQmod sends a copy of the Order Confirmation email the customer receives to the Admin email address.
This vQmod sends a copy of the Order Confirmation email the customer receives to the Admin email address.
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
uksitebuilder wrote:You really have me lost here.
This vQmod sends a copy of the Order Confirmation email the customer receives to the Admin email address.
Yes i know Simon. But i want receive this e-mail (order confirmation email) in a "specific email", not in the admin email.
Please help me, this is my last request!

- spirit
- Posts: 296
- Joined: Fri Oct 01, 2010 11:40 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Then you change
to
- Code: Select all
$mail->setTo($this->config->get('config_email'));
to
- Code: Select all
$mail->setTo('YOU@YOUREMAIL.COM');
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Works fine, thanks simon!
Now i may send the original order email to my customers if for any reason they don't receive it. I think OC need create this function really (resend original order email).
Thanks again
Now i may send the original order email to my customers if for any reason they don't receive it. I think OC need create this function really (resend original order email).
Thanks again

- spirit
- Posts: 296
- Joined: Fri Oct 01, 2010 11:40 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Hi Simon,
Works a charm many thanks for your work on this!
I have a small issue I could do with your help on. How do I change the text at the bottom of the confirmation email from "The comments for your order are:" to anything else?
Thanks in advance
Steve
Works a charm many thanks for your work on this!
I have a small issue I could do with your help on. How do I change the text at the bottom of the confirmation email from "The comments for your order are:" to anything else?
Thanks in advance
Steve
- stevenesler
- Posts: 1
- Joined: Wed Dec 21, 2011 12:33 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
admin/language/english/mail/order.php
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Is there a way to run this XML file, or is the only way to accomplish it, to go through and make the included edits to each file manually?
- FnF
- Posts: 79
- Joined: Sat Mar 19, 2011 1:59 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
DUH!
Scratch that last post. I was in a retard state of mind.
Vqmod!
Scratch that last post. I was in a retard state of mind.
Vqmod!

- FnF
- Posts: 79
- Joined: Sat Mar 19, 2011 1:59 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Thanx Simon! Great mod. Any chance that this will be standard in OC 1.5.2?
But what to do, to change the name in the column "Sender" in my mail client (TB). I prefer to see the name of the customer instead of my company. I've read some many topics about this, but ïm still struggling with it.
Thanx again mate.
But what to do, to change the name in the column "Sender" in my mail client (TB). I prefer to see the name of the customer instead of my company. I've read some many topics about this, but ïm still struggling with it.
Thanx again mate.
OC version 1.5.4.1
- markman-b
- Posts: 233
- Joined: Wed Aug 24, 2011 11:13 am
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Hi Simon
This is working well - apart from the Customer Comments.
For some reason, they are not showing up in the HTML version of the email.
If I switch to plain text, I can see the Comments
If I view source for the email message I can see the Comments
It just doesn't show in the HTML version.
Any ideas why that could be?
thanks
@webecho
This is working well - apart from the Customer Comments.
For some reason, they are not showing up in the HTML version of the email.
If I switch to plain text, I can see the Comments
If I view source for the email message I can see the Comments
It just doesn't show in the HTML version.
Any ideas why that could be?
thanks
@webecho
- webecho
- Posts: 21
- Joined: Mon Dec 06, 2010 1:17 am
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
please check your vqmod/vmqmod.log file for any errors and advise your OC version
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Hi Simon
No errors in the VQMod file - tried looking there.
OC 1.5.1.3
I've looked through all the template and controller files and as far as I can tell, it should be showing up.
It's got me really confused.
Just about finished for the day, so there's no rush - but any suggestions will be gratefully received with tomorrow mornings pot of Coffee.
@webecho
No errors in the VQMod file - tried looking there.
OC 1.5.1.3
I've looked through all the template and controller files and as far as I can tell, it should be showing up.
It's got me really confused.
Just about finished for the day, so there's no rush - but any suggestions will be gratefully received with tomorrow mornings pot of Coffee.
@webecho
- webecho
- Posts: 21
- Joined: Mon Dec 06, 2010 1:17 am
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
I have a really dumb question..
How to i run the xml file ?!
i tryed to upload it to root folder and run it... but it didnt work..
Hope for help..
How to i run the xml file ?!
i tryed to upload it to root folder and run it... but it didnt work..
Hope for help..
- Bredpitt
- Posts: 2
- Joined: Sat Sep 17, 2011 3:08 pm
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Bredpitt wrote:I have a really dumb question..
How to i run the xml file ?!
i tryed to upload it to root folder and run it... but it didnt work..
Hope for help..
You need to install VQMod
Then place the xml file in the XML folder inside the VQMod folder.
You can download VQMod here
Hope that helps
@webecho
- webecho
- Posts: 21
- Joined: Mon Dec 06, 2010 1:17 am
Re: [vQmod] Admin HTML Order Confirmation Plus 1.5.1.x
Hi
I have a rellay strange problem with this module.
I do not get any order confirmation e-mail at all ... EXCEPCT for if I put the order from my self.
All orders I put myself I get the conf. mail, but NO other
(all the orders are in the db though ... so this is "just" the conf. e-mail missing)
I have a rellay strange problem with this module.
I do not get any order confirmation e-mail at all ... EXCEPCT for if I put the order from my self.
All orders I put myself I get the conf. mail, but NO other

(all the orders are in the db though ... so this is "just" the conf. e-mail missing)
- kungmats
- Posts: 53
- Joined: Tue Jan 25, 2011 3:00 pm
48 posts
• Page 1 of 3 • 1, 2, 3
Who is online
Users browsing this forum: No registered users and 9 guests













