Form 8109: Obsolete Tax Deposit Form (Replaced by EFTPS)

*[Note: This form is obsolete and was replaced by the Electronic Federal Tax Payment System (EFTPS).]* It was a paper coupon used by businesses to make federal tax deposits.
Jimmy Law

What Was Form 8109?

Form 8109, Federal Tax Deposit Coupon, was a paper voucher that businesses used to make deposits of employment taxes, corporate income taxes, and other federal taxes at authorized financial institutions.

Is Form 8109 Still Used?

No. Form 8109 is obsolete. The IRS discontinued the use of paper tax deposit coupons and replaced them with electronic payment systems.

What Replaced Form 8109?

Federal tax deposits must now be made through the Electronic Federal Tax Payment System (EFTPS). All businesses are required to use EFTPS for depositing:

What is EFTPS?

The Electronic Federal Tax Payment System (EFTPS) is a free service provided by the U.S. Department of Treasury. It allows taxpayers to pay federal taxes electronically through:

How to Enroll in EFTPS

To use EFTPS:

  1. Enroll online at EFTPS.gov or call 800-555-4477
  2. Receive your PIN by mail (takes 5-7 business days)
  3. Activate your enrollment online or by phone
  4. Schedule payments online or by phone

Benefits of EFTPS

Official Source: EFTPS - Electronic Federal Tax Payment System

Fast to set up. Easy to use.
Get your team up and running with Breakroom in 60 seconds. Or schedule a free, personalized demo today.
// Function to update active link function updateActiveLink(activeSectionId) { // Remove active class from all links navigationLinks.forEach(function(link) { link.classList.remove('is-active'); }); // Add active class to the corresponding link var activeLink = document.querySelector('a[href="#' + activeSectionId + '"]'); if (activeLink) { activeLink.classList.add('is-active'); } } // Set up intersection observer for scroll-based active states if (navigationLinks.length > 0) { var observerOptions = { root: null, rootMargin: '-20% 0px -80% 0px', // Trigger when section is 20% from top threshold: 0 }; var observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) { updateActiveLink(entry.target.id); } }); }, observerOptions); // Observe all H2 sections headers.forEach(function(header) { observer.observe(header); }); }