Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sanctuarybookshop

Pioneers
  • Posts

    42
  • Joined

  • Last visited

Everything posted by sanctuarybookshop

  1. I've installed the addon after bit of trial and error I now get a catalogue generated, this is the link to the generated file http://sanctuarybooks.co.uk/catalog/catalogues/catalog_1.pdf I can't understand why it's appearing like it is, probably something so stupid, if anybody has encountered the same problem did you manage to find a solution?
  2. Sorry for not checking in lately, got a lot on at the moment but will post when have a chance. Not forgotten about it
  3. Hi everyone, I've done some edits to allow PayPal standard to send the HTML invoice via email. The coding might need some tidying up but it works!!! I'll post the coding on here at some point when get chance as it might be of use to somebody else :-)
  4. Now I've got the HTML invoice working with paypal standard, i'd like to share the coding I've used to make it work, how do I go about making it available to the community? As I'm new to PHP, I'm pretty sure that the code can be improved and made more efficient by somebody a little more proficient than myself, but it works and that is what i set out to achieve!!!! Paul
  5. Thank you so much, that has cracked it!!!!!!!!!!!! So happy :) :) :) :) :thumbsup: :thumbsup: :thumbsup: :thumbsup:
  6. I will give that a go and feed back on the outcome Thanks
  7. I've been working on getting email invoices working with paypal standard too, I'm using fancier-invoice-packing-slip-for-231 module ( http://addons.oscommerce.com/info/8362 ) The email is sent but on the invoice for paying via paypal the order number isn't appearing, yet it does on the cash on delivery invoice. Both use exactly the same code to generate the invoice. The code that sends the email is (lines 106-111 in email_invoice.php) :- $ei_message->build_message(); $ei_message->send($order2->customer['name'], $order2->customer['email_address'], STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, 'Your Sanctuary Books Order # ' . $insert_id); if (SEND_EXTRA_ORDER_EMAILS_TO != '') { $ei_message->send('Orders','[email protected]', STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, 'New Order Received # ' . ' ' . $insert_id); By changing the $insert_id to '123456' the subject line shows the order number as 123456, hence the variable $insert_id should be the order number, but isn't been assigned the order number for some reason. Any ideas or suggestions would be welcome, Paul
  8. I've been working on enabling the paypal standard module to send HTML invoice via email, the email is sent but on the invoice for paying via paypal the order number isn't appearing, yet it does on the cash on delivery invoice. Both use exactly the same code to generate the invoice. The code that sends the email is (lines 106-111 in email_invoice.php) :- $ei_message->build_message(); $ei_message->send($order2->customer['name'], $order2->customer['email_address'], STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, 'Your Sanctuary Books Order # ' . $insert_id); if (SEND_EXTRA_ORDER_EMAILS_TO != '') { $ei_message->send('Orders','[email protected]', STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, 'New Order Received # ' . ' ' . $insert_id); By changing the $insert_id to '123456' the subject line shows the order number as 123456, hence the variable $insert_id should be the order number, but isn't been assigned the order number for some reason. Any ideas or suggestions would be welcome, Paul
×
×
  • Create New...