|
|
|
<?
/*
This function is a replacement of the function 'imap_8bit'
(since the IMAP package is rarely installed).
It converts an 8-bit ascii string to the 'quoted-printable' format or
html-entities coded text to 'quoted-printable' format.
It should be used on every standard mailing application because you never
know if there's somewhere an old 7-bit smtp server
*/
function ascii2qp($ascii_in = "") {
return str_replace ("%","=",rawurlencode($ascii_in));
}
function htent2qp($ascii_in = "") {
$trans = get_html_translation_table (HTML_ENTITIES);
$trans = array_flip ($trans);
return str_replace ("%","=",rawurlencode(strtr ($ascii_in, $trans)));
}
?> |
|
| Data Retrieve from mailbox and generate the SQL Syntax Categories : PHP, IMAP, Mail | | | Protect your email links from being spidered by spam email robots! Categories : PHP, Security, Mail, Email | | | Using this script anyone can easily get a form result to his/her mailbox. You can use this script for any form 2 mail purpose. Categories : PHP, Mail, Form Processing | | | Getting newsgroup with PHP Categories : PHP, IMAP | | | mail -- send mail Categories : PHP, PHP Functions, Mail | | | imap_sort Categories : IMAP, Email, PHP, PHP Functions | | | XPertMailer - Sends TRUE Mails Categories : PHP, Mail, SMTP, PHP Classes | | | Query2Report : Generating Html, Pdf and Csv Reports from SQL Query Categories : PHP, PHP, HTML, PDF, Excel | | | Email Class Categories : PHP, Mail, PHP Classes | | | imap_subscribe -- Subscribe to a mailbox Categories : PHP, PHP Functions, IMAP, Email | | | Tell a friend script :) Categories : PHP, Mail | | | imap_headerinfo -- Read the header of the message Categories : PHP, PHP Functions, IMAP | | | Simple Maiing list with newsletter support Categories : PHP, PHP Classes, Mail | | | PHP3 FormMail This script sends E-mail using PHP3 function mail(). Body of
message is from text file that you create. Easily modified. Categories : PHP, Email, IMAP | | | send php mail with form data and attachment. Categories : PHP, Email, Mail, Form Processing | |
|
|