Secure & Simple

How to Pay

We accept Venmo and bank transfer (ACH). We do not accept credit or debit cards.

1 Choose how you will pay
Venmo
Instant & easy
Pay us directly in the Venmo app.
Pay to:
@MorrissLawnService
Open Venmo & Pay Now
Include your EST- or CUST- reference in the Venmo note.
Bank Transfer (ACH)
From your checking account

Authorize a one-time ACH debit from your checking account. We will process it within 1–2 business days.

Secure: Your bank details are sent only to Morriss Lawn Service for this payment — not stored on this public page after submission.
2 How would you like your receipt?

Choose your receipt preference, then continue to payment.

Email receipt
PDF receipt emailed after payment is confirmed.
Print receipt
Open a printable receipt in your browser after payment — nothing is mailed.
'; } function printReceiptViaIframe(rec) { const frame = document.getElementById('receipt-print-frame'); if (!frame || !frame.contentWindow) return false; const doc = frame.contentWindow.document; doc.open(); doc.write(buildReceiptDocumentHtml(rec)); doc.close(); frame.contentWindow.focus(); frame.contentWindow.print(); return true; } function openPrintReceipt(rec, existingWin) { const record = rec || buildPaymentRecord(); const html = buildReceiptDocumentHtml(record); if (existingWin && !existingWin.closed) { existingWin.document.open(); existingWin.document.write(html); existingWin.document.close(); existingWin.focus(); return true; } const popup = window.open('about:blank', 'morriss_receipt_print'); if (popup && !popup.closed) { popup.document.open(); popup.document.write(html); popup.document.close(); popup.focus(); return true; } return printReceiptViaIframe(record); } function printReceipt() { const printed = openPrintReceipt(buildPaymentRecord(), null); if (!printed) { alert('Could not open the print window. Allow pop-ups for this site and try Print receipt again.'); } } window.onload = init;