Send Receipt

This function is used to send the transction receipt to the given mail address. It can be used after transaction and also in transaction page.

PayContactlessEmbed.getInstance().sendReceipt(long transactionId, String email, SendMailListener listener)

Send Mail Listener

public interface SendMailListener {
    void onSuccess();
    void onFailure(Error error);
}

Last updated