Hi I am using this script to send mail: <?php if (isset($_GET['email'])) { //send email $email = $_GET['email'] ; $subject = $_GET['subject'] ; $message = $_GET['message'] ; mail("@gmail.com", "$subject", $message, "From:" . $email); echo "CoolÄćžš!"; } ?> <div id="contactus" > <form method="get" action="http://..."> Email: <input name="email" type="text" /><br /> Subject: <input name="subject" type="text" /><br /> Message:<br /> <textarea name="message" rows="15" cols="40"> </textarea><br /> <input class="highlight_input_btn fr" type="submit" value="Send" /> </form> </div> PHP: Charset in the e-mail is somehow ok. But the echo statement on success does not show chars Äćžš. Can someone help me out please? Thank you very much in advance!
Hello, Try this Open the file in notepad++ then from menu toolbar select encoding in encoding select convert to UTF-8 and then save the file.
That didn't help either, but I replaced the text so I don't need this characters. Thank you all for help!