473,385 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

How can I make an always working mailform with java?

Hi all,

This is my first time visiting this group. I already tried two other java
groups, but those aren't very populated.
I don't know if it is the right one, otherwise please tell me in which
group I have to put me question.
And yes I know that I'm multiposting, crossposting or whatever. Reason is
that I saw this group (comp.lang.javascript) later.

Well the question is as follows:
I need a simple mailform. I know how to make an html-form, but I don't want
to use
the most easy solution in html with mailto:. Everyone knows that gives you
more spam than you would like...
The form contains some text, three fields to be filled in:
1) name
2) e-mail address (for replies etc) and
3) a text-area for comment and questions
Furthermore a Transmit or Submit button. A Reset or Erase button is welcome,
but not neccessary.

I had a form using CGI-bin from my provider, but it fails somehow, so I
decided to use something different. I tried PHP, but my provider does not
support that. The only thing I can use is Html and Java.
I tried something with Java, but what I have now is not what I want, it
starts user's e-mail program and than fills in the 'to', 'from', 'subject'
and textbody. User still has to click the sent button. BUT, what happens
when user doesn't have a mail program on his machine? Or is using an exotic,
non 'standard', program?

I searched a lot on the web, maybe not on the right places, but all I found
are examples with far more functionality then what I need. I don't want
radiobuttons, checkboxes.

Could any of you help me? With an example or link?

Thanks in advance
John


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.701 / Virus Database: 458 - Release Date: 7-6-2004
Jul 23 '05 #1
2 1619
JohnK wrote:
This is my first time visiting this group. I already tried two other java
groups, but those aren't very populated.
JavaScript has nothing to do with Java.
http://jibbering.com/faq/#FAQ2_2
I need a simple mailform. I know how to make an html-form, but I don't
want to use
the most easy solution in html with mailto:. Everyone knows that gives you
more spam than you would like...
This doesn't work anyway: http://www.isolani.co.uk/articles/mailto.html
I had a form using CGI-bin from my provider, but it fails somehow, so I
decided to use something different.
That is rather vague. I'd suggest you ask your provider for support.
I tried PHP, but my provider does not
support that. The only thing I can use is Html and Java.
I tried something with Java, but what I have now is not what I want, it
starts user's e-mail program and than fills in the 'to', 'from', 'subject'
and textbody. User still has to click the sent button. BUT, what happens
when user doesn't have a mail program on his machine? Or is using an
exotic, non 'standard', program?
Like Hotmail, GMail or Yahoo! mail? Those are pretty common. I don't think
any email client can be considered "standard".

You need something on the server. Client side JavaScript isn't going to cut
it, nor is client side Java (well, if you can persude the user to download
an applet containing your own SMTP client (probably requiring them to
upgrade their Java Plugin along the way), and outgoing SMTP isn't blocked
from their network[1], and incoming mail from dynamically assigned ip
addresses isn't blocked from your server - then you might be able to do it)
I searched a lot on the web, maybe not on the right places, but all I
found are examples with far more functionality then what I need. I don't
want radiobuttons, checkboxes.


The content of the form is not relevent. The only safe way to get form data
to email is to submit it over http and have a script running on your server
deal with it.

[1] Except for specific, designated mail servers.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Jul 23 '05 #2
In article <40*********************@reader10.nntp.hccnet.nl >,
jo**********@noreply.net enlightened us with...
Hi all,

This is my first time visiting this group. I already tried two other java
groups, but those aren't very populated. <snip>

java != javascript.
Could any of you help me? With an example or link?


Why don't you just use one of the free ones?

Although, if you have a cgi-bin, it's REALLY easy to make one in Perl.
I can't program in Perl very well and I did one. *g*
There's a bunch of free scripts on the web, too.
Even better, if your server has a cgi-bin, they probably support
formmail (perl). Ask them.
If the one you were using failed, it's probably something simple. What
fails? Is there an error given?

Mailing a form requires something on the server if you're to avoid the
nasty mailto. Javascript, generally speaking, runs on the client.

If you really meant that your host supports java servlets, let me know.
If they have javamail or smtp mail, I can make you a quick servlet to
mail a form. I've already got a JSP page that uses smtp mail to do that.

--
--
~kaeli~
Black holes were created when God divided by 0.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: FiremanSAM | last post by:
Hi, i am a newbie with php . Why does the following not work on lycos free account??????? <?PHP $to = $_POST; $from = $_POST; $mes = $_POST;
4
by: Hal Vaughan | last post by:
I never noticed this before, but when I run an external program through Runtime, like this: Runtime rt = Runtime.getRuntime(); System.out.println("Running external command: " + sCommand); try...
4
by: zalekbloom | last post by:
I noticed on my PC with win98/IE 6.028 applets are not working. Applets are working when I use Netscape 7.1. When I open the DOS win and I check for a Java version I am getting: C:\WINDOWS>java...
16
by: Christopher Brandsdal | last post by:
I have made a asp mailform. What is wrong? I get this error: Microsoft VBScript runtime error '800a0046' Permission denied
3
by: Gert-Jan van Middelkoop | last post by:
Hi, I'm using an e-mailform on my website. I would like to make a dropdownmenu with several subjects, so when the e-mail arrives I can immediatly see it's subject. Therefore, this code must...
19
by: qazmlp | last post by:
class base { // other members public: virtual ~base() { } virtual void virtualMethod1()=0 ; virtual void virtualMethod2()=0 ; virtual void virtualMethod3()=0 ;
0
by: Corey Wallis | last post by:
Dear All, I'm currently working on a project that needs to collect the output of the JHOVE application. More information about the application is available at this website: ...
31
by: ajos | last post by:
hi frnds, i have a form,which has 2 input text boxes, the values are entering the text boxes,when i leave the 2 text boxes blank and hit submit a java script gives the message that the 2 fields are...
3
by: ITAutobot25 | last post by:
Now this is really the last problem (for real now) with this assignment. My sorter is not working. I managed to sort by product name in my previous assignment; however, I can't get it to work on this...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.