What is the path to sendmail? Updated on April 23, 2026 by Brad Markle 1 Minutes, 2 Seconds to Read Table of Contents What is Sendmail? What is the path to Sendmail? A Command Line Example Using Sendmail Exploring Email Sending Alternatives What is Sendmail? Sendmail is a very popular Mail Transport Agent (MTA). It is used to send email between servers. It runs in the background on our servers, and most users generally don’t ever need to interact with it directly. What is the path to Sendmail? Sendmail is located at: /usr/sbin/sendmail If you have VPS Hosting or Dedicated Hosting, you can find the path by using the “which” command: user@vps#### [/]# which sendmail /usr/sbin/sendmail A Command Line Example Using Sendmail Users generally don’t need to call sendmail directly from the command line, but in case you’re looking for it for a specific reason, we’ve included an example below that shows how to send an email from the command line using sendmail: root@vps#### [/]# /usr/sbin/sendmail -t To: [email protected] From: [email protected] Subject: This is the subject of the email This is the body of the email. . root@#### [/]# Exploring Email Sending Alternatives In addition to locating the path to sendmail, remember that sendmail serves as a command-line tool for direct email transmission. For PHP applications, consider employing PHPMailer – a versatile solution offering secure and feature-rich email functionality. To delve deeper into utilizing PHPMailer, we recommend consulting our PHPMailer tutorial. Share this Article Related Articles Intro to Migrating your WordPress Site Data Migrating your WordPress Database Migrating WordPress Files Configuring WordPress After a Migration Testing your WordPress website after Migration How to Move WordPress from a Subfolder to the Root Directory What to expect during a mass server migration Move Your WordPress Site to a New Server Moving Websites Built with Older Technology into WordPress How to Export Your WordPress Sites