Tag email

[Solved] Sendmail as HTML output [closed]

Add Content-type:text/html;charset=UTF-8 to you header and remove * from html tags like this $headers = “MIME-Version: 1.0” . “\r\n”; $headers .= “Content-type:text/html;charset=UTF-8” . “\r\n”; $headers .= “From: <****@example.com>’ . “\r\n”; $headers .= “Cc: ****@example.com’ . “\r\n”; $message =” <html> <head>…

[Solved] How to send this with php mail function

Name the original and newly spawned input fields ingredienten[] and benodigheden[] this will make them come in as a array in php. foreach($_POST[‘benodigheden’] as $value){ echo $value .'<br />’; } offcourse you need to change it to something usefull I…

[Solved] JavaScript taking information from a email address

First get the email address to parse. You’ve already done that. Here, x contains the email address. var x = document.getElementById(“myText”).value; Now you can use x.indexOf(“.”) to get the position of the first period. Likewise, use x.indexOf(“@”) to get the…

[Solved] php code : email not send

Your hosting provider likely has disabled emailing to prevent its system being used for spamming. You should contact them to see if they will enable it for you. If they will not, you may want to consider using a third-party…