Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > Form Mailer

Reply
Thread Tools

Form Mailer

 
 
Joshua St. John
Guest
Posts: n/a
 
      07-13-2003
I am looking for cgi access so I can create my own form with whatever fields
I want and be able to use someones cgi access to send it. Please reply to
Thanks

Joshua

--
____________________________________

Maybe God wants us to meet a few wrong
people before meeting the right one, so that
when we finally meet the person, we know
how grateful to be.


 
Reply With Quote
 
 
 
 
Tina - AffordableHOST.com
Guest
Posts: n/a
 
      07-13-2003
Why not use response-o-matic.com ??? Its free and very easy to use...been
around for years.

--Tina
--
http://www.AffordableHOST.com - hosting since 1997
Cpanel, Multi-Acct., Resellers, Server Pkgs., $5.95 and up.
Newsgroup 20% Discount Code/Coupon: newsgroup


"Joshua St. John" <> wrote in message
news:...
> I am looking for cgi access so I can create my own form with whatever

fields
> I want and be able to use someones cgi access to send it. Please reply to
> Thanks
>
> Joshua
>
> --
> ____________________________________
>
> Maybe God wants us to meet a few wrong
> people before meeting the right one, so that
> when we finally meet the person, we know
> how grateful to be.
>
>



 
Reply With Quote
 
 
 
 
Andreas Paasch
Guest
Posts: n/a
 
      07-13-2003
Joshua St. John wrote:

> I am looking for cgi access so I can create my own form with whatever
> fields
> I want and be able to use someones cgi access to send it. Please reply to
> Thanks
>
> Joshua
>


http://www.scriptarchive.com/readme/formmail.html
Is a perl script, rename it to cgi, adjust the user/group rights, run it.

All there.

/Andreas

--
Registeret Linux user #292411
 
Reply With Quote
 
Isofarro
Guest
Posts: n/a
 
      07-13-2003
Andreas Paasch wrote:

> Joshua St. John wrote:
>
>> I am looking for cgi access so I can create my own form with whatever
>> fields

>
> http://www.scriptarchive.com/readme/formmail.html


Stay well away from Matt's Script Archive.
http://www.html-faq.com/cgi/?secureformmail

use the nms scripts instead:
http://nms-cgi.sourceforge.net/


--
Iso.
FAQs: http://html-faq.com http://alt-html.org http://allmyfaqs.com/
Recommended Hosting: http://www.affordablehost.com/
Web Standards: http://www.webstandards.org/
 
Reply With Quote
 
Andreas Paasch
Guest
Posts: n/a
 
      07-13-2003
Isofarro wrote:

> Andreas Paasch wrote:
>
>> Joshua St. John wrote:
>>
>>> I am looking for cgi access so I can create my own form with whatever
>>> fields

>>
>> http://www.scriptarchive.com/readme/formmail.html

>
> Stay well away from Matt's Script Archive.
> http://www.html-faq.com/cgi/?secureformmail
>
> use the nms scripts instead:
> http://nms-cgi.sourceforge.net/
>
>


I knew that MSA scripts have had their flaws, but thought they were fixed by
now.
Read it, and learned something new. Present MSA bookmark dropped, info taken
ad notum.

Script will be change here.

Thanks !

/Andreas

--
Registeret Linux user #292411
 
Reply With Quote
 
Peter
Guest
Posts: n/a
 
      07-17-2003
What are you trying to send and where? You can get a form to submit the
fields to you in an email no problem. You can even specify the layout of the
body text using javascript. Depends on what you are trying to achieve.

Peter.

"Joshua St. John" <> wrote in message
news:...
> I am looking for cgi access so I can create my own form with whatever

fields
> I want and be able to use someones cgi access to send it. Please reply to
> Thanks
>
> Joshua
>
> --
> ____________________________________
>
> Maybe God wants us to meet a few wrong
> people before meeting the right one, so that
> when we finally meet the person, we know
> how grateful to be.
>
>



 
Reply With Quote
 
Hywel Jenkins
Guest
Posts: n/a
 
      07-17-2003
"Peter" <> wrote in message news:<JZnRa.28753$>...
> "Joshua St. John" <> wrote in message
> news:...
> > I am looking for cgi access so I can create my own form with whatever

> fields
> > I want and be able to use someones cgi access to send it. Please reply to
> > Thanks
> >

> What are you trying to send and where?


What difference does that make? An email form is an email form,
unless you use action="mailto:..." (then it becomes a lottery).

> You can get a form to submit the
> fields to you in an email no problem. You can even specify the layout of the
> body text using javascript. Depends on what you are trying to achieve.


Why would you use JavaScript to "specify the layout of the body text"?

--
Hywel
 
Reply With Quote
 
Peter
Guest
Posts: n/a
 
      07-19-2003
Here's an example of what I am talking about. If you try this out, you will
find that the spaces have been altered to "+" signs. This is because when
you use the get method in the form, it encodes the form elements into the
url of the action. You could change the action to post and then change the
body text accordingly using javascript. This method gives a great deal of
control over the email that is being sent. I have made the to address
alterable in the form, but you could fix that to any address you like in the
action of the form and then remove the first table row. You will get a
security message shown stating you are about to submit an email, but I think
this is quite a nice way to send mail from a web page without having to
resort to cgi. Alternatively, you could check out Tripod or Angelfire as
they offer Perl cgi mailing scripts for free, just make your web page link
into their cgi script in the action and alter your form fields in accordance
with their instructions.

Hope that helps you understand what I was suggesting earlier.


Peter.

<!-- Put this in the head section of your html -->
<script type="text/javascript">
function submitForm() {
docment.myForm.submit();
}

function resetForm() {
document.myForm.reset();
}
</script>

<!-- Put this in the body section of your html -->
<form name="myForm" id="myForm" action="" method="get">
<table>
<tr>
<td>To</td>
<td><input type="text" name="to" value=""></td>
</tr>
<tr>
<td>CC</td>
<td><input type="text" name="cc" value=""></td>
</tr>
<tr>
<td>BCC</td>
<td><input type="text" name="bcc" value=""></td>
</tr>
<tr>
<td>Subject</td>
<td><input type="text" name="subject" value=""></td>
</tr>
<tr>
<td>Body</td>
<td><input type="text" name="body" value=""></td>
</tr>
<tr>
<td align="left"><input type="button" value="Clear" name="cmdReset"
onClick="resetForm();"></td>
<td align="right"><input type="button" value="Send" name="cmdSubmit"
onClick="submitForm();"></td>
</tr>
</table>
</form>


"Hywel Jenkins" <> wrote in message
news: m...
> "Peter" <> wrote in message

news:<JZnRa.28753$>...
> > "Joshua St. John" <> wrote in message
> > news:...
> > > I am looking for cgi access so I can create my own form with whatever

> > fields
> > > I want and be able to use someones cgi access to send it. Please

reply to
> > > Thanks
> > >

> > What are you trying to send and where?

>
> What difference does that make? An email form is an email form,
> unless you use action="mailto:..." (then it becomes a lottery).
>
> > You can get a form to submit the
> > fields to you in an email no problem. You can even specify the layout of

the
> > body text using javascript. Depends on what you are trying to achieve.

>
> Why would you use JavaScript to "specify the layout of the body text"?
>
> --
> Hywel



 
Reply With Quote
 
Hywel Jenkins
Guest
Posts: n/a
 
      07-21-2003
In article <kscSa.536$>,
says...
> "Hywel Jenkins" <> wrote in message
> news: m...
> > "Peter" <> wrote in message

> news:<JZnRa.28753$>...
> > > "Joshua St. John" <> wrote in message
> > > news:...
> > > > I am looking for cgi access so I can create my own form with whatever
> > > fields
> > > > I want and be able to use someones cgi access to send it. Please

> reply to
> > > > Thanks
> > > >
> > > What are you trying to send and where?

> >
> > What difference does that make? An email form is an email form,
> > unless you use action="mailto:..." (then it becomes a lottery).
> >
> > > You can get a form to submit the
> > > fields to you in an email no problem. You can even specify the layout of

> the
> > > body text using javascript. Depends on what you are trying to achieve.

> >
> > Why would you use JavaScript to "specify the layout of the body text"?
> >

> Here's an example of what I am talking about. If you try this out, you will
> find that the spaces have been altered to "+" signs. This is because when
> you use the get method in the form, it encodes the form elements into the
> url of the action. You could change the action to post and then change the
> body text accordingly using javascript. This method gives a great deal of
> control over the email that is being sent. I have made the to address
> alterable in the form, but you could fix that to any address you like in the
> action of the form and then remove the first table row. You will get a
> security message shown stating you are about to submit an email, but I think
> this is quite a nice way to send mail from a web page without having to
> resort to cgi. Alternatively, you could check out Tripod or Angelfire as
> they offer Perl cgi mailing scripts for free, just make your web page link
> into their cgi script in the action and alter your form fields in accordance
> with their instructions.
>
> Hope that helps you understand what I was suggesting earlier.
>

The code you've given has no effect on the layout of the email
whatsoever. It does nothing to format the data in any. In fact, you
just done a daft thing with buttons that already existing HTML (<input
type="submit"> and <input type="reset">).

You are so far off the mark you've almost shot yourself in the arse.

--
Hywel I do not each quiche
http://hyweljenkins.co.uk/
http://hyweljenkins.co.uk/mfaq.php
 
Reply With Quote
 
ManoDestra
Guest
Posts: n/a
 
      07-22-2003
I agree. The thing that annoyed me was that the guy wasn't even the guy who
asked the question. It pains me when people question you and act all smart
when they don't know what they're talking about. What goes around, comes
around, I suppose.

Probably just ****ed off for being called Hywel. Get some web experience
before you open your mouth again Hywel. Try listening to people once in a
while and you might learn something.

Peter.
<> wrote in message
news:...
> On Tue, 22 Jul 2003 01:18:59 +0100, "ManoDestra"
> <> wrote:
>
> >I don't really see why you have to be insulting. I was merely trying

to be
> >helpful by showing you that you can do exactly what you wanted to do

with
> >html and javascript without having to use any cgi. If you want to

validate
> >the fields, that are being passed, then fine. Write the javascript to
> >validate the fields before you submit the form.
> >
> >I don't understand why you feel you need to be offensive. I was after

all
> >only trying to help. If I'm bothering you then I won't bother you any
> >further.
> >
> >Have a nice day...
> >Peter.

> Dear Peter,
>
> There is a broadly accepted belief in this newsgroup that merely by the
> action of asking for help, or volunteering alternative information, you

are
> giving permission to the greybeards to assault you in anyway they choose.
> When I say "broadly accepted " I mean it is broadly accepted by the
> greybeards - no-one else thinks it appropriate.
>
> You may get a follow-up from any of the regulars after the fashion: "You
> don't *have* to post here, and we don't get paid to do this (and so on)

and
> thus we don't *have* to answer you, so if we DO answer you, you ought to
> feel properly grateful that you got any response at all.... Search the
> web.... Try buying a book.... Visit the technical section of your local
> library, etc." They also have the option of smug silence - "Wotta

peasant,
> daring to question my attitude after I've been good enough to increase his
> miserable stock of knowledge..." sort'v thing.
>
> Stay subscribed to the group for any period of time and you may begin to
> sense that there is almost a competition to see how rude ("abrupt",

rather)
> some people can be in their replies to the less skilled who seek help. I
> should imagine that there are Ph.D dissertations by the bucketful being
> written on the psychology of those whose displays seem to indicate they
> almost relish reading innocent queries that they may reply forcefully.

I'm
> sure the word "territorial" will feature strongly in such papers.
>
> This newsgroup is not unique in offering such behaviour - Usenet is, after
> all, shall we say "robust"? - but it can be one of the worst at times,
> considering the placid spirit enquirers usually display, but that, of
> course, is of little import to people like you who are puzzled why a

fairly
> quiet summing of an alternative procedure should generate such heat in the
> reply.
>
> I don't know why the person who replied to you in that style did so; over
> the months of reading this group's posts his (and others') replies, when
> stripped of the invective, are usually spot-on and I have been helped by
> that. I have also seen some of them go to great lengths to carry the
> argument through to a full solution to the benefit of their correspondent.
>
> My own experience was of some four replies to my query; two were

dismissive
> "RTFM" types, one was of limited help but the fourth pointed the way in a
> simple style symptomatic of the best spirit of usenet.
>
> Alas, they rarely get a response of "Thanx, that worked great!" Also, I
> agree that it must be dispiriting at times to be called upon to face the
> same range of questions over and over again when many of these could have
> been answered by a little simple self-help search in other arenas. No

doubt
> this can colour an overall attitude but, as the man said "It's nice to be
> nice" and it costs nothing - and I cannot imagine they'd be so rude were

you
> in the same room as you.
>
> They so often say - "we don't *have* to do this" etc - all as above. So

if
> they choose to do it, why do they sometimes act as they do? I don't know;
> perhaps they don't either. It's a shame, unfortunate.
>
> Yooors,
>
> Iain.
> This post did not necessarily reflect my opinions. So there.
>
> Sent from within Forte's Agent.
> Pull the pins out to reply direct.




 
Reply With Quote
 
 
 
Reply

Thread Tools

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
form mailer for info + files Gregory Python 0 01-18-2010 09:29 PM
Re: [sendmail,perl] How to catch a mailer error [perl script as sendmail.cf mailer] Andrzej Adam Filip Perl 0 03-31-2008 09:24 PM
Brinkster Form Mailer Problem Sparky Arbuckle ASP .Net 0 02-27-2005 03:44 AM
Multiple field form for this ASP mailer script Mark Creelman ASP General 3 04-03-2004 05:01 AM
Script Request - form mailer with ID Number gwmbox Perl Misc 0 07-09-2003 12:19 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57