Go Back   The UNIX and Linux Forums > Special Forums > Web Programming, Web 2.0 and Mashups
google site



Web Programming, Web 2.0 and Mashups Discuss Web Programming and Web Server Administration, including LAMP, Apache, MySQL, Flash, HTML, SEO, Mashups and other Web APIs and topics.

Closed Thread
English Japanese Spanish French German Portuguese Italian Powered by Powered by Google
 
Search this Thread
  #1  
Old 12-07-2009
Registered User
 

Join Date: Dec 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Question Email Form

Hi everyone,

I am glad to be part of this forum. My question is about setting up email on my website. I need to know how would I proceed in order to create a form so my visitors can register directly for email without me assigning them a password. In order words I need them to be able to register for email just like yahoo or aol etc.

Thanks
Sponsored Links
  #2  
Old 12-07-2009
Registered User
 

Join Date: Sep 2007
Location: SE Mass
Posts: 193
Thanks: 0
Thanked 0 Times in 0 Posts
You simply want a form that requests their information and then eother saves that in a file or emails it to you or does whatever else you want to do.

These things are trivial if you use Perl CGI.pm

For sending mail to myself or whomever, I like the Mail::Sendmail module because it lets me use simple HTMl.

Example of CGI.pm at 2005/01/25 CGI.pm

Example of Sendmail:


Code:
my %mail =   ( To      => $MailList,
              From    => $LdapUserEmail,
              Subject => $Subject,
              smtp => $taskglobals::smtp,
              'Content-Type' => 'text/html',
              'Content-Transfer-Encoding' => '8BIT',
              Message => $body
            );
sendmail(%mail) or print "ERROR sending mail\n";

  #3  
Old 12-08-2009
Registered User
 

Join Date: Dec 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
I see but I am a novice in the field; can you explain it to me step by step? will I need to install a specific program in my computer?

Thanks
Sponsored Links
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
S-231: Adobe Form Designer and Form Client Vulnerabilities Linux Bot Security Advisories (RSS) 0 03-27-2008 09:10 AM
Send email with attachment in form of excel in unix bdebroy Shell Programming and Scripting 8 09-05-2007 05:39 AM
Send email where # is in the email address - Using Unix jingi1234 UNIX for Dummies Questions & Answers 1 05-23-2005 11:23 AM
Unable to send eMail from a UNIX-Host ( using mailx ) to a Outlook-email-addres(Win) Vetrivela UNIX for Advanced & Expert Users 2 02-15-2005 09:43 AM
Changing Unix form to Microsoft Word form to be able to email it to someone. Cheraunm UNIX for Advanced & Expert Users 8 05-24-2002 03:58 AM



All times are GMT -4. The time now is 11:54 PM.