drewC 0 Posted April 21, 2007 when someone buys our shirts ...oscommerce doesn't notify us of the purchase. how do i get oscommerce to notofy us of the purchase? we just get a paypal notification. also how do i itemize our shirts...we have 1 shirt and there's 3 pictures for that one shirt but when i put those 3 pics up there it shows as 3 different items. thanks for the help drew Share this post Link to post Share on other sites
drewC 0 Posted April 22, 2007 when someone buys our shirts ...oscommerce doesn't notify us of the purchase. how do i get oscommerce to notofy us of the purchase? we just get a paypal notification. also how do i itemize our shirts...we have 1 shirt and there's 3 pictures for that one shirt but when i put those 3 pics up there it shows as 3 different items. thanks for the help drew somebody please help me :( Share this post Link to post Share on other sites
nvedia 0 Posted April 22, 2007 Look in admin/configuration and find "send extra order emails to" Share this post Link to post Share on other sites
nvedia 0 Posted April 22, 2007 If it is set to an email and it doesnt works Try sending an email by going to Customers and try to send an email If that doesnt works then its a server problem! Regarding the second problem, can we see your site? Share this post Link to post Share on other sites
Dennis_gull 0 Posted April 22, 2007 (edited) Do you want to send a email to the customer or yourself? You can add some kinda easy code to send an email to yourself.. I think something like this should work: define(EMAIL_TEXT_SUBJECT,'A product got sold'); $email = "Hello admin.. "\n\n"; $email .= "Your product: ".$product_info['products_name'].' got sold"\n\n"; $email .= "More info here.."\n\n"; $email .= "more info here.."\n\n"; $email .= "And so on..."; tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, EMAIL_TEXT_SUBJECT, STORE_OWNER.' '.STORE_OWNER,STORE_OWNER_EMAIL_ADDRESS); If it works you can place it on checkout_success and every time someone order something you will get an email.. Edited April 22, 2007 by Dennis_gull Share this post Link to post Share on other sites
nvedia 0 Posted April 22, 2007 Isnt that same things happen in admin/configuration->"send extra order emails to"?? Share this post Link to post Share on other sites
Dennis_gull 0 Posted April 22, 2007 I never used that option but yeah I think so, at least thats what it says :) Share this post Link to post Share on other sites