LogoLogo
Developer Hub
Developer Hub
  • 📍Documentation
    • 🏂Onboarding
  • PayContactless
    • PayContactless Embed
  • 📱MERCHANT EMBED SDK
    • PayContactless Embed SDK
      • Getting Started
      • SDK API Reference
        • Initialize
        • Pay With Card
          • Sale
          • Refund
          • Pre&Post Auth
        • Pay With Link
        • Pay With Account
        • Transactions History
        • Transactions Detail
        • Send Receipt
        • Daily Transactions Summary
        • Error Handling
    • Security Mechanisms
    • Production Preparation
      • Play Integrity Configuration
      • Firebase Crashlytics Configuration
      • Firebase Push Notification Configuration
  • 📱CUSTOMER ACCOUNT BASE EMBED SDK
    • Account Base Embed SDK
      • Getting Started
      • SDK API Reference
  • 💻BACKEND INTEGRATION
    • API Specification
  • 🔐Security
Powered by GitBook
On this page
  1. MERCHANT EMBED SDK
  2. PayContactless Embed SDK
  3. SDK API Reference

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);
}
PreviousTransactions DetailNextDaily Transactions Summary

Last updated 1 year ago

📱