Does a user on my app have to register to pay me through paynow


#1

So l have a Mobile Application. Mobile transactions are sent with a payment that is generated like this.
createPayment(String invoiceReference , String authEmail );
documentation states that authEmail is supposed to match that of a registered Paynow account.
If it does not match that then it will fail (l tested it and it is true). So If l want to initiate a transaction on mobile, l use my registered email’s account. But what if l want to recieve a payment from someone’s bank? they have to be registered.

Suggestion…
l can render the Paynow registration page on my app/ website(allowing my users to create a paynow account) in order to process these payments. sendPayment(Payment payment)
OR
I can handle my own accounts with banking details and the likes and forward the back account number to the plugin or SDK. and users not have to register on paynow
sendExternalPayment(Payment payment, String accountNumber, String password )
(this is not fair to be honest but easier ).

This makes it easier for people to use paynow, but ofcoz just a suggestion.