I have a different variation of this. Is it possible to auto-generate each pdf invoice once the user subscribes and store a copy in a protected location on our server? I'm asking because we're going to customize the pdf invoice to create income tax receipts na dwe'd like to have a copy stored locally for each user. Further, is it possible to only generate receipts for qualified products (i.e. not generate receipts for products which we decide are not income tax deductible?)
hi, I would like to know how to get the pdf invoices sent to me too. Is there a way to add a single additional email by default? The text information via mail is OK but it would be good to get the pdf instead. Thanks
hello, Did anyone ever come up with an answer for this question? We're running in to the same issue, where we would like a copy of the PDF Invoice sent to our admin address. Any insight would be appreciated! thanks!
In /amember/common.inc.php find function mail_payment_user and at the bottom of this function find this: Code: mail_customer($u['email'], $parsed_mail, null, null, $attachments, false, $u['name_f'] . ' ' . $u['name_l']); change to Code: mail_customer($u['email'], $parsed_mail, null, null, $attachments, false, $u['name_f'] . ' ' . $u['name_l']); mail_customer($config['admin_email'], $parsed_mail, null, null, $attachments, false, $u['name_f'] . ' ' . $u['name_l']);