↧
Send email from PHP page using GMail SMTP server
Following code helps the php developers to send email using gmail smtp server. <?php require_once "Mail.php"; $from = "<fromaddress@domain.com>"; $to = "<toaddress@domain.com>"; $subject...
View ArticleSend HTML formatted email in PHP
Following function helps to send HTML formatted email using PHP <?php function htmlMail() { $to = "toemail@example.com"; $subject = "email subject"; $mail_body = '<html> <body...
View ArticleXML parser in PHP
This is a useful function for quick and easy xml parsing when an extension is not available: <?php /** * Convert XML to an Array * * @param string $XML * @return array … Continue...
View Article