E-mails compatíveis com Apple Mail, Microsoft Outlook, Gmail e Yahoo
Here is a PHP Mail Multipart/Alternative (Plain Text and HTML) code for *nix servers (Unix Like Servers)… if you are hosted on a windows server, simply replace all “\n” or “\n\n” in the below code to “\r\n” or “\r\n\r\n” respectively.
This code is for anyone who has already written an HTML page for their PHP mail… there are several PHP > HTML free translators on the internet. You may use one of them to translate your HTML code to PHP to insert into the following code. All there needs to change is to place a backslash before any quotations (EX: … confirm that \”Our Company\” has …), and to end each line with a newline character (EX: \n )…
This code method has been successfully tested with Apple Mail, Microsoft Outlook, G-Mail, and Yahoo Mail. I hope this helps out anyone that is writing a multipart/alternative PHP mailer script.
<?php # -=-=-=- PHP FORM VARIABLES (add as many as you would like) $name = $_POST["name"]; $email = $_POST["email"]; $invoicetotal = $_POST["invoicetotal"]; # -=-=-=- MIME BOUNDARY $mime_boundary = "----Your_Company_Name----".md5(time()); # -=-=-=- MAIL HEADERS $to = "$email"; $subject = "This text will display in the email's Subject Field"; $headers = "From: Our Company <company>n"; $headers .= "Reply-To: Our Company <company>n"; $headers .= "MIME-Version: 1.0n"; $headers .= "Content-Type: multipart/alternative; boundary=\"$mime_boundary\"n"; # -=-=-=- TEXT EMAIL PART $message = "--$mime_boundaryn"; $message .= "Content-Type: text/plain; charset=UTF-8n"; $message .= "Content-Transfer-Encoding: 8bitnn"; $message .= "$name:nn"; $message .= "This email is to confirm that \"Our Company\" has received your order.n"; $message .= "Please send payment of $invoicetotal to our company address.nn"; $message .= "Thank You.nn"; # -=-=-=- HTML EMAIL PART $message .= "--$mime_boundaryn"; $message .= "Content-Type: text/html; charset=UTF-8n"; $message .= "Content-Transfer-Encoding: 8bitnn"; $message .= "n"; $message .= "n"; $message .= "$name:n"; $message .= "n"; $message .= "This email is to confirm that \"Our Company\" has received your order.n"; $message .= "Please send payment of $invoicetotal to our company address.nn"; $message .= "n"; $message .= "Thank You.nn"; $message .= "n"; $message .= "n"; # -=-=-=- FINAL BOUNDARY $message .= "--$mime_boundary--nn"; # -=-=-=- SEND MAIL $mail_sent = @mail( $to, $subject, $message, $headers ); echo $mail_sent ? "Mail sent" : "Mail failed"; ?>
Popularidade: 19%

(4.5 em 5)