Hi guys,
i using xampp and i trying to configure MSMTP with PHP to send the mail with function mail() of php.
I have a this problem, with this config:
and php.ini is:
Ok,
when i try to send mail with mail() i receive this error in error_log of apache:
I do not know where I must modify the permissions and I must wants to write files temporary.
Some ideas?
p.s If i try to send mail with this command to shell bash:
Work correctly.
Thanks.
i using xampp and i trying to configure MSMTP with PHP to send the mail with function mail() of php.
I have a this problem, with this config:
Code:
sh-3.2# ls -ls /var/empty/
total 8
8 -rw------- 1 nobody nobody 195 12 Set 22:35 .msmtprc
0 -rwxrwxrwx 1 nobody nobody 0 12 Set 22:35 log.log
sh-3.2# cat /var/empty/.msmtprc
account default
logfile /var/empty/log.log
syslog off
host smtp.gmail.com
timeout 60
port 587
from someaddresshere@gmail.com
auth login
user someaddresshere@gmail.com
password *******
tls on
tls_certcheck off
and php.ini is:
Code:
sendmail_path = "/opt/local/bin/msmtp -C /var/empty/.msmtprc -t"
Ok,
when i try to send mail with mail() i receive this error in error_log of apache:
Code:
msmtp: cannot create temporary file: Permission denied
I do not know where I must modify the permissions and I must wants to write files temporary.
Some ideas?
p.s If i try to send mail with this command to shell bash:
Code:
echo "hello." | msmtp --debug --from=default -t someotheremailaddress@someotherdoma.in
Thanks.
Last edited by a moderator: