Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2001
    Location
    New Jersey
    Posts
    1,509

    Best way to send html message?

    Are there any free/paid services that would allow me to send HTML-based newsletter to my clients?

    I would prefer a good FREE Service or even better, a php script that would allow to setup a mailing list and let me send html newsletters.

    Any ideas?
    Clip and Print Free Grocery Coupons - ClipCoupons.us

  2. #2
    Join Date
    Jun 2002
    Location
    Tennessee
    Posts
    33
    Have you tried hotscripts.com or resourceindex.com?
    Brian White - Brian@acunett.com
    High Bandwidth Reseller Hosting
    http://www.acunett.com/

  3. #3
    Join Date
    Oct 2001
    Location
    New Jersey
    Posts
    1,509
    Yes. There are so many to choose from. Just wondering if anyone had any experience with any of them.
    Clip and Print Free Grocery Coupons - ClipCoupons.us

  4. #4
    Join Date
    Jun 2002
    Posts
    94
    Write one usrelf!

    use this code and save as a mail.php file or summink!

    PHP Code:
    $to "client@clientdomain.com";
    $subject "Weekly Newsletter";
    $content "yourhost.com News Letter";

    mail($to$subject ,  $content'FROM: webmaster@$SERVER_NAME \n' 'Reply-To: webmaster@$SERVER_NAME\r\n'); 

    if they are stored in a database simply connect to the database and then get the details in an array and use a while() or foreach() function to repeat the above code!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •