diff --git a/paypal/standard/models.py b/paypal/standard/models.py index c07e2fd..04c9983 100644 --- a/paypal/standard/models.py +++ b/paypal/standard/models.py @@ -252,7 +252,7 @@ def verify(self, item_check_callable=None): self.set_flag("Invalid payment_status. (%s)" % self.payment_status) if duplicate_txn_id(self): self.set_flag("Duplicate txn_id. (%s)" % self.txn_id) - if self.receiver_email != RECEIVER_EMAIL: + if self.receiver_email != RECEIVER_EMAIL and self.business != RECEIVER_EMAIL: self.set_flag("Invalid receiver_email. (%s)" % self.receiver_email) if callable(item_check_callable): flag, reason = item_check_callable(self)