how can i have someone send me a email with out their email. it would be like haveing me suply the email adress and they send the mail to it. it is so that people can sign up for page.
Printable View
how can i have someone send me a email with out their email. it would be like haveing me suply the email adress and they send the mail to it. it is so that people can sign up for page.
The technique commonly used is to write an html form that you present to your users that gathers whatever information you ask them for. Then you write a servlet or JSP to read the results.
Finally, using the SmtpClient object in your servlet or JSP, you send the email to your account. That means that the web server itself is sending the email, which is common practice.
cudabean