|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-09-01 19:11 UTC] b dot parish at arts dot ac dot uk
[2004-09-02 08:13 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 17:00:01 2025 UTC |
Description: ------------ The mail function cannot send the email has certain characters. For instance the following will not work $subject = "Joe bloggs edited the Personnel Record of Joe bloggs"; If I strip out the 'd's, it does work: $subject = "Joe bloggs edite the Personnel Recor of Joe bloggs"; mail("j.bloggs@arts.ac.uk", $subject, "test", ""); My php.ini has the following values: [mail function] ; For Win32 only. SMTP = mail.arts.ac.uk ; For Win32 only. sendmail_from = j.bloggs@arts.ac.uk The problem also occurs on Linux running PHP Version 4.3.2 Looking in /var/log/maillog: Sep 1 17:41:57 www-b sendmail[27241]: i81GfvD27241: from=nobody, size=92, class=0, nrcpts=1, msgid=<200409011641.i81GfvD27241@www-b.linst.ac.uk>, relay=nobody@localhost Sep 1 17:41:57 www-b sendmail[27244]: i81GfvD27241: to=j.bloggs@arts.ac.uk, ctladdr=nobody (99/99), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30092, relay=mail.linst.ac.uk [195.195.78.11], dsn=2.0.0, stat=Sent (OK id=1C2YBJ-0002Nd-00) Reproduce code: --------------- $subject = "Joe bloggs edited the Personnel Record of Joe bloggs"; mail("j.bloggs@arts.ac.uk", $subject, "test", ""); Expected result: ---------------- An email is sent with: to/from: j.bloggs@arts.ac.uk subject: 'Joe bloggs edited the Personnel Record of Joe bloggs' body: 'test' Actual result: -------------- No email is sent at all.