Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created April 21, 2019 17:39
Show Gist options
  • Save iskenxan/fbe955e34a783bb2a5fe0b77f6b99112 to your computer and use it in GitHub Desktop.
Save iskenxan/fbe955e34a783bb2a5fe0b77f6b99112 to your computer and use it in GitHub Desktop.
class ReceiptManager {
_generateReceiptHtml(orderId, userEmail) {
// generates and returns HTML of the receipt
}
sendReceipt(orderId, userEmail, sendStrategy) {
const receiptHTML = this._generateReceiptHtml(orderId, userEmail);
sendStrategy.send(receiptHTML, userEmail);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment