Index: branches/5.2.x/units/gateways/gw_classes/rightconnect.php =================================================================== diff -u -N -r14258 -r14940 --- branches/5.2.x/units/gateways/gw_classes/rightconnect.php (.../rightconnect.php) (revision 14258) +++ branches/5.2.x/units/gateways/gw_classes/rightconnect.php (.../rightconnect.php) (revision 14940) @@ -1,6 +1,6 @@ Application->ConfigValue('Smtp_AdminMailFrom'); + $post_fields["ADMIN_EMAIL"] = $this->Application->ConfigValue('DefaultEmailSender'); $curl_helper =& $this->Application->recallObject('CurlHelper'); /* @var $curl_helper kCurlHelper */ Index: branches/5.2.x/units/gift_certificates/gift_certificates_eh.php =================================================================== diff -u -N -r14677 -r14940 --- branches/5.2.x/units/gift_certificates/gift_certificates_eh.php (.../gift_certificates_eh.php) (revision 14677) +++ branches/5.2.x/units/gift_certificates/gift_certificates_eh.php (.../gift_certificates_eh.php) (revision 14940) @@ -1,6 +1,6 @@ Load($id); $send_params = Array ( - 'from_email' => $this->Application->ConfigValue('Smtp_AdminMailFrom'), + 'from_email' => $this->Application->ConfigValue('DefaultEmailSender'), 'from_name' => $object->GetDBField('Purchaser'), 'to_email' => $object->GetDBField('RecipientEmail'), 'to_name' => $object->GetDBField('Recipient'), Index: branches/5.2.x/units/orders/orders_tag_processor.php =================================================================== diff -u -N -r14883 -r14940 --- branches/5.2.x/units/orders/orders_tag_processor.php (.../orders_tag_processor.php) (revision 14883) +++ branches/5.2.x/units/orders/orders_tag_processor.php (.../orders_tag_processor.php) (revision 14940) @@ -1,6 +1,6 @@ Application->ConfigValue('Site_Name')); - $from_email = $this->Application->ConfigValue('Smtp_AdminMailFrom'); + $from_email = $this->Application->ConfigValue('DefaultEmailSender'); $to_name = $order->GetDBField('BillingTo'); $to_email = $order->GetDBField('BillingEmail');