Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Email

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Aug 2004
    Location
    USA
    Posts
    996

    Default Email

    I haev this email script, its PHP and HTMl.

    Real easy to edit and stuff...
    If you want it ask me.
    You can't spam in it unless you keep filling out the stuff and sending it.
    No bots can touch it :P

    I made it, if your used to php, you can get it done and edit it your way in few seconds.
    i wrote it myself, took awhile, and if you want a demo, my subscriber system and Email Requesting system go through my email.

    http://hosting.cfe-clan.com are the examples.

  2. #2
    Join Date
    Oct 2004
    Posts
    282

    Default

    yep, it will be very nice to demo it
    btw i am looking for a email list management software too.
    wonder if what this is.
    please link me or simple email it to me at [email protected]
    thanx

  3. #3
    Join Date
    Aug 2004
    Location
    USA
    Posts
    996

    Default

    Well I have an easy Email thing, but I've found some Nice CGI Subscriber crap on hotscripts.com
    and it also when they push subscribe their email gets put in a .txt file, I thought that would be cool, but its impossible to setup.

  4. #4
    Join Date
    Oct 2004
    Posts
    282

    Default

    yea. i know u can do that with php. but it would be extremely insecure since .txt is not encrypt and can be modified easily
    btw i was looking for a email listing management software. i just found this soft based mysql and php named phpLedMailer

  5. #5
    Join Date
    Aug 2004
    Location
    USA
    Posts
    996

    Default

    Well good luck with that.
    I just like to stay out of MySQL as much as possible.

  6. #6
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    CFE_aAa_FeLoNy, cfeBB is like phpBB ? Do you have an online demo of it ?

    guru898rider, for mailing you can check out http://phplist.com/ is based on PHP and MySQL.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  7. #7
    Join Date
    Aug 2004
    Location
    USA
    Posts
    996

    Default

    cfeBB is kind of like phpBB its just I changed alot of $sql stuff around and crap.
    I normally look at the latest version of phpBB and change some stuff. I think they know what is wrong its just they need to find out how to change it, I can't really make it a perfect forum but its try able.
    http://www.cfe-clan.com/trial/
    http://saadonline.cfe-clan.com
    http://www.cfe-clan.com/trr/

    I give them attatchmod Full mod and system backup and quick Reply.
    These things is probably something you can add on your own.
    Its just attatch_mod takes forever.

  8. #8
    Join Date
    Aug 2005
    Posts
    3

    Default omg

    you know how easy these forms are... make a file called process.php with the following data
    <?php
    $to = "[email protected]";
    $subject = "Someone e-mailed something";
    $confirm = "message to display after form is submitted";
    $message = "hi \nhi";
    //the \n means next line, that would display...
    /*
    hi
    hi
    */
    mail($to, $subject, $message);
    echo("$confirm");
    ?>
    then a form with the action="process.php" and method="post" and you can plug and play variables.

  9. #9
    Join Date
    Aug 2004
    Location
    USA
    Posts
    996

    Default

    Yea their easy, but you just need to know how to orginize it the way you want.
    You don't get any info other than a message from your stuff :P

    Anyway lets not talk about email Scripts in the General Discussions forum, if you want to talk about email scripts go to website review / programming.

  10. #10
    Join Date
    Oct 2004
    Posts
    282

    Default

    Quote Originally Posted by Nokia
    CFE_aAa_FeLoNy, cfeBB is like phpBB ? Do you have an online demo of it ?

    guru898rider, for mailing you can check out http://phplist.com/ is based on PHP and MySQL.
    thanks for the headup. i already found this php script called phpLedMailer. It's a very basic php script using mysql to store all stuff. You can do a lot of customization to it.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

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