Well, so you are saying that the ONLY way, as of now, or at least the only easy, common way, is to use php.
In this case, once the order is added to the database, and perhaps assigned its own unique cart number, I could then code php to send me an email with a link to some page on my site. This link will have the cart # inside it. And when that link is called up, I can then use that cart # to query the database however I please and show whatever I like on the page.
Is that correct?
Can I also, at the time of check out, send as many emails as I want. Specifically, I would want to send myself and email with the aforementioned link, and I also want to send the customer a confirmation email. Is this possible?
Lastly, is this the common format of the mail function:
mail($to, $subject, $message);
And is the only way to include a "from" address is to use $headers?
Thanks.