|
google site
|
|||||||
| Forums | Register | Blog | Man Pages | Forum Rules | Links | Albums | FAQ | Users | Calendar | Search | Today's Posts | Mark Forums Read |
| 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. |
![]() |
|
|
Search this Thread |
|
#1
|
|||
|
|||
|
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
|
|||
|
|||
|
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
|
|||
|
|||
|
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 | ||
|
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
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 |