Tagged Questions
4
votes
1answer
424 views
Sending Hebrew subject in php mail goes Klingon…?
I'm trying to send email with hebrew content/subject like so:
$to = 'email@email.com';
$subject = "איזה יום יפה היום";
$message = 'ממש יום יפה';
$headers = 'From: email@email.com' . "\r\n";
...
4
votes
4answers
2k views
accented words in email subject break spacing - how do I stop this?
We have a custom php email marketing app, and an interesting problem:
If the subject line of the message contains a word with accents, it 'swallows' the spaces between it and the following word.
An ...
-1
votes
1answer
127 views
Need to modify one variable for a PHP mail form
I need to modify this PHP mail form to have the email subject include "New message from photography site" before the subject supplied by the visitor who submits the form. I don't know PHP and tried a ...