mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-08 23:12:54 +01:00
Update path to sendmail binary
On most systems sendmail is located in /usr/sbin not /usr/bin
This commit is contained in:
parent
070eb39132
commit
fa7066c9cf
1 changed files with 1 additions and 1 deletions
2
msg.go
2
msg.go
|
@ -58,7 +58,7 @@ type Msg struct {
|
|||
}
|
||||
|
||||
// SendmailPath is the default system path to the sendmail binary
|
||||
const SendmailPath = "/usr/bin/sendmail"
|
||||
const SendmailPath = "/usr/sbin/sendmail"
|
||||
|
||||
// MsgOption returns a function that can be used for grouping Msg options
|
||||
type MsgOption func(*Msg)
|
||||
|
|
Loading…
Reference in a new issue