Help - Search - Members - Calendar
Full Version: [Req]PHP Mailer
MSFN Forums > Coding, Scripting and Servers > Web Development (HTML, Java, PHP, ASP, XML, etc.)

   


Google Internet Forums Unattended CD/DVD Guide
sparco
Anyone can help me? I need a Php mailer for my website that sends to inbox. Sorry for this stupid request but i'm noob at php I just need it badly. blushing.gif
john18
QUOTE (sparco @ Sep 17 2008, 12:24 PM) *
Anyone can help me? I need a Php mailer for my website that sends to inbox. Sorry for this stupid request but i'm noob at php I just need it badly. blushing.gif


free php mass mailer script you can find here you can find and inbox php mailer here
tain
The PHP page has tons of examples. Here is one:
CODE
<?php
// The message
$message = "Line 1\nLine 2\nLine 3";

// In case any of our lines are larger than 70 characters, we should use wordwrap()
$message = wordwrap($message, 70);

// Send
mail('caffeinated@example.com', 'My Subject', $message);
?>




Google Internet Forums Unattended CD/DVD Guide

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.