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:
<
p class=”code_block”>[email protected]#### [/]# 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:
[email protected]#### [/]# /usr/sbin/sendmail -t To: [email protected] From: sender[email protected] Subject: This is the subject of the email This is the body of the email. . [email protected]#### [/]#