Subscription mailing list

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Subscription mailing list

    Hi All

    Im building my first php site and what im looking for is a simple
    tutuorial / example of a form which allows users to enter their email
    address, which is stored in my Mysql db.

    Also need to know how to go about mailing everyone who subscribes to
    my news letter.

    I know its probably quite simple, but i'd like to check for duplicate
    email addresses, verify email addresses (dont know if that possible)
    and allow them to un-subcribe.

    Thanks in advance.
    Robert, Inverness
    robert Guest

  2. Similar Questions and Discussions

    1. Mailing List
      Hey, I've got a site, but I'm pretty new to site design and I know NOTHING about coding...just use the software. Any idea (anyone?) on how I create...
    2. Mailing list set up!
      Hi, Well i am looking to set up a mailing list for my new organisational web site and the way i thought to do it is to use the insert record server...
    3. Problems with JDBC site and Postgres mailing list subscription page
      http://jdbc.postgresql.org/ seems to be down. Also I can't connect to the mailing list subscription page at: ...
    4. Tk mailing list
      I want to deal with the Tk. Is there any relevant mailing list to gain information?
    5. Double Opt In Mailing List Subscription ASP, CDO, Access Example
      Here's an example of using ASP, CDO and a Microsoft Access database to create a double opt in mailing list for subscribers. It lets the user...
  3. #2

    Default Re: Subscription mailing list

    *** robert wrote/escribió (6 Nov 2003 08:39:29 -0800):
    > but i'd like to check for duplicate email addresses
    You can either make e-mail database field a unique key or, simply, perform
    a SELECT query before inserting new addresses in order to check whether
    user is already subscribed.
    > verify email addresses (dont know if that possible)
    Add the address to a temporary table with a unique random id (like
    kyzaxa3epada3ixy). Then send a message with instructions to activate the
    account: "Visit http://www.site.com/activate.php?id=kyzaxa3epada3ixy".
    In activate.php, check code exists, add data to final table and remove
    temporary entry.
    > and allow them to un-subcribe.
    It's almost the same as subscribing, just replace "INSERT" with "DELETE"
    ;-)

    --
    --
    -- Álvaro G. Vicario - Burgos, Spain
    --
    Alvaro G Vicario Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139