|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-10-06 15:03 UTC] moxley at inetarena dot com
code that fails:
mail("Greg Kempster <moxley@inetarena.com>", "theSubject",
"theBody", "From: me <moxley@inetarena.com>");
php.ini at mail portion:
[mail function]
SMTP
= pop.ptld.uswest.net ;for win32 only
sendmail_from
=
info@caelestisproductions.com
;for win32 only
;sendmail_path
=
;for unix only, may supply arguments as well (default is
'sendmail -t -i')
Additionally:
This works:
mail("moxley@inetarena.com", "theSubject", "theBody", "From:
me <moxley@inetarena.com>");
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 12:00:01 2025 UTC |
Try this as a work around: mail("user@host.com", "My Subject", "My Body", "To: \"Some User\" <user@host.com>\nFrom: me <blah@blah.com>" ); Sean