How to add bcc to auto-reply mail for paypal payment ?
(17 posts) (3 voices)-
Posted 3 months ago #
-
I tested the new function but it doesn't working.
Mail to the buyer is sent, but not to the seller.In ipn_customization_config.php, there are the following lines.
===
//This is where a notification email will be sent after a purchase if you specify an email address below. Example eamil address: jon.doe@hotmail.com
$seller_eamil_adddress = "";
//Seller email subject
$seller_email_subject = "Notification of product sale";
//Seller email body. The {buyer_email} will be dynamically replaced with the actual buyer email.
$seller_email_body = "Dear Seller".
"\n\nThis mail is to notify you of a product sale.".
"\n\nThe following email was sent to the buyer:".
"\n{buyer_email}".
"\n\nThanks";
===I guess "$seller_eamil_adddress" is a typo of "$seller_email_address", right ?
I tried both "$seller_eamil_adddress" and "$seller_email_address" with simple values like below,
but both failed (no mail has been sent).
===
//This is where a notification email will be sent after a purchase if you specify an email address below. Example eamil address: jon.doe@hotmail.com
$seller_eamil_adddress = "me@aaa.com";
//Seller email subject
$seller_email_subject = "FFF";
//Seller email body. The {buyer_email} will be dynamically replaced with the actual buyer email.
$seller_email_body = "AAA";
===I checked junk mail folder.
Do you have any idea to solve this issue ?
Posted 2 months ago # -
That is definitely a typo (I will fix it) but it is a variable name so it doesn't matter as long as you specify the email address inside the quotes ("") it will use that value. Are you sure you didn't introduce an error when modifying the file similar to your other query?
http://www.tipsandtricks-hq.com/forum/topic/auto-email-doesnt-arrivePosted 2 months ago # -
This issue occurs even just after the following procedure.
- delete and re-install pdf stamper
- fill in a valid email address in the double quotes of $seller_eamil_adddress.So I am sure this query has nothing to do with
http://www.tipsandtricks-hq.com/forum/topic/auto-email-doesnt-arrivePosted 2 months ago # -
Your from email address is not the same as your seller email address right? Some server's don't allow you to send an email when the "to" and "from" addresses are the same.
Posted 2 months ago # -
I have made some slight changes in the IPN handler script which will help us identify the issue if one exists. Also fixed the typo. Please get a new build of the plugin from here then check it out:
http://support.tipsandtricks-hq.com/update-requestPosted 2 months ago # -
I have found out the cause.
The cause was the variable name of seller email address.In the new version (4.1.2), the valid variable name is
"$seller_eamil_adddress", not "$seller_eamil_adddress" nor "$seller_email_address".Now I can receive the seller email.
Thank you.Posted 2 months ago #
Reply
You must log in to post.