1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Recommend a friend form

Discussion in 'C#' started by hershel, Aug 14, 2006.

  1. #1
    Hi - I want to create a recommend a friend email form on my asp site that allows visitors and registered users to enter their friends email addresses which then get sent to me.

    I am a novice asp coder - can someone please point me in the right direction.
     
    hershel, Aug 14, 2006 IP
  2. fluid

    fluid Active Member

    Messages:
    679
    Likes Received:
    29
    Best Answers:
    0
    Trophy Points:
    70
    #2
    There's nothing complicated with the 'Recommend a Friend' script :)

    1. Get a form with say 10 inputboxes for the email addresses.
    2. When the form is submitted, retrieve the values from the inputboxes (make sure you have validated the email addresses though)
    3. Create your Mail Object
    4. Send the mail to the email addresses

    You might want to actually build a string for all the email addresses like:

    email_addresses = "x@y.com, ; "

    Mail.To = email_addresses
    Mail.Bcc = your_email_address
    Mail.Send

    This method sends all the emails at once but you might want to do one at a time, so you would need to enclose your Mail routine in a while loop for all the email addresses (valid ones)
     
    fluid, Aug 14, 2006 IP
  3. Carlito

    Carlito Peon

    Messages:
    679
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    0
    #3
    There are really simple scripts that you can easily drop into your site if you want to add this feature, such as this one: Email A Friend Script
     
    Carlito, Aug 28, 2006 IP
  4. Link.ezer.com

    Link.ezer.com Peon

    Messages:
    647
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Link.ezer.com, Aug 29, 2006 IP
  5. Software_outsourcing

    Software_outsourcing Peon

    Messages:
    298
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Remember to use some email component like CDONT for this . Check with your service provider , the type of component installed on the server
     
    Software_outsourcing, Oct 16, 2006 IP