Jump to content

[Req]PHP Mailer


Recommended Posts

  • 4 months later...

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:

free php mass mailer script you can find here you can find and inbox php mailer here

Edited by john18
Link to comment
Share on other sites

The PHP page has tons of examples. Here is one:

<?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);
?>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...