Sending Emails in HTML

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ali Rizwan
    Banned
    Contributor
    • Aug 2007
    • 931

    #1

    Sending Emails in HTML

    Hello all,
    I have made a web page, Now i want to add some features like sending emails.
    I want to use HTML code to send emails.
    Email text will be retrieved by combining the text of two text boxes.
    and email address is also retrieved from a textbox.

    Thanx
    I have no idea about such stuff this is my first try for HTML.

    And plz don't suggest me that using blah procedure is good, plz answer to the point.

    Thanx
    >> ALI <<
  • harshmaul
    Recognized Expert Contributor
    • Jul 2007
    • 490

    #2
    Straight to the point it is then...

    You cannot send e-mails using HTML alone.

    Now the detail ;)
    You can either use a server side language (php, asp etc....) or you can use the clients native mail program.

    Example try this hyper link...

    Code:
    <a href="mailto:me@you.com">Click here to send e-mail</a>

    Comment

    • harshmaul
      Recognized Expert Contributor
      • Jul 2007
      • 490

      #3
      Sorry my PC went crazy and submited the form by accident and i wasn't finished!!

      anyway you can add a query string to the end of that and fill in parts of the native email programs e-mail form...

      Code:
      mailto:me@you.com?cc=ccme@you.com&bcc=bccme@you.com&subject=subject+goes+here&body=message+goes+here
      I hope that helped

      Comment

      • ronverdonk
        Recognized Expert Specialist
        • Jul 2006
        • 4259

        #4
        And plz don't suggest me that using blah procedure is good, plz answer to the point.
        Any other demands, master?

        Ronald

        Comment

        • AutumnsDecay
          New Member
          • Mar 2008
          • 170

          #5
          The best way to do this is to use a sendmail form.

          Google: sendmail.php form.

          There's a good tutorial on how to start learning PHP and such at the same time.

          Comment

          Working...