Changes between Version 1 and Version 2 of Ticket #64368, comment 10
- Timestamp:
- 12/06/2025 11:06:05 PM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #64368, comment 10
v1 v2 10 10 @studiomondiale told me that when he run `$phpmailer-isSendMail()` he got this error: 11 11 12 ``` 12 {{{ 13 13 Could not execute: /usr/sbin/sendmail -finfo@domain.name -t -i 14 ``` 14 }}} 15 15 16 16 But it works for him having this `sendmail_path` 17 17 18 ``` 18 {{{ 19 19 sendmail_path = /usr/sbin/sendmail -finfo@domain.name -t -i 20 ``` 20 }}} 21 21 22 22 My only theory is that his web host have the `popen` restricted because, regardless of the `Sender` change, if using `$phpmailer->isSendmail` should have worked as if it will technically execute the same (and is one of the recommended actions in PHPMailer).