473,803 Members | 3,159 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

form mailto vs CDO?

What are the advantages/disadvantages of using this form submission approach
as opposed to eg: Cdo, aspEmail - it appears to harness the MS standard
mailto capability?:

<FORM ENCTYPE="text/plain" NAME="test" METHOD='POST'
ACTION='mailto: in**@examle.com ?subject=Resume ' onSubmit="retur n
submitForm()">
Jul 19 '05 #1
4 5525
> What are the advantages/disadvantages of using this form submission
approach
as opposed to eg: Cdo, aspEmail - it appears to harness the MS standard
mailto capability?:


Not everyone has a default mail reader at all, and some use default mail
readers that do not support this form action=mailto.

And for those where the technology *does* work, it's very easy for the end
user to either cancel the sending of the form or to alter the
from/to/body/subject of the e-mail before sending.

Handling the mail on the server side gives you much greater control, and
does not render your app useless when it relies on missing client
requirements.
Jul 19 '05 #2
The biggest advantage is that using something like aspEmail (which we use
and love) gives you a TON more control over what gets sent. It is also a LOT
more professional.

You can format, validate, set priority, attach files, send as HTML or
Multipart, and do almost anything you want to a message if you run it
through aspEmail or another component like that. A simple mailto: form won't
allow you to do any of that, and some browsers even warn before submitting
with somthing like "This form is being submitted via email - do you want to
continue?"

Using components gives you more control and is a lot more compatible.

/bw
"jason" <ja***@catamara nco.com> wrote in message
news:OB******** ******@TK2MSFTN GP12.phx.gbl...
What are the advantages/disadvantages of using this form submission approach as opposed to eg: Cdo, aspEmail - it appears to harness the MS standard
mailto capability?:

<FORM ENCTYPE="text/plain" NAME="test" METHOD='POST'
ACTION='mailto: in**@examle.com ?subject=Resume ' onSubmit="retur n
submitForm()">

Jul 19 '05 #3
Thanks - as a matter of interest how does CDO compare to ASPEmail...

- Jason
"wetchman" <we******@NOSPA Mhotmail.com> wrote in message
news:x4******** *************@n ews.alltel.net. ..
The biggest advantage is that using something like aspEmail (which we use
and love) gives you a TON more control over what gets sent. It is also a LOT more professional.

You can format, validate, set priority, attach files, send as HTML or
Multipart, and do almost anything you want to a message if you run it
through aspEmail or another component like that. A simple mailto: form won't allow you to do any of that, and some browsers even warn before submitting
with somthing like "This form is being submitted via email - do you want to continue?"

Using components gives you more control and is a lot more compatible.

/bw
"jason" <ja***@catamara nco.com> wrote in message
news:OB******** ******@TK2MSFTN GP12.phx.gbl...
What are the advantages/disadvantages of using this form submission

approach
as opposed to eg: Cdo, aspEmail - it appears to harness the MS standard
mailto capability?:

<FORM ENCTYPE="text/plain" NAME="test" METHOD='POST'
ACTION='mailto: in**@examle.com ?subject=Resume ' onSubmit="retur n
submitForm()">


Jul 19 '05 #4
On Wed, 16 Jul 2003 09:32:59 -0400, "jason" <ja***@catamara nco.com>
wrote:
What are the advantages/disadvantages of using this form submission approach
as opposed to eg: Cdo, aspEmail - it appears to harness the MS standard
mailto capability?:

<FORM ENCTYPE="text/plain" NAME="test" METHOD='POST'
ACTION='mailto :in**@examle.co m?subject=Resum e' onSubmit="retur n
submitForm() ">


My default mail client doesn't have access to send internet mail, and
your address isn't on our internal network... :)

Jeff
=============== =============== =====
Jeff Cochran (IIS MVP)
jc************* @naplesgov.com - Munged of Course

I don't get much time to respond to direct email,
so posts here will have a better chance of getting
an answer. Besides, everyone benefits here.

Suggested resources:
http://www.iisfaq.com/
http://www.iisanswers.com/
http://www.iistoolshed.com/
http://securityadmin.info/
http://www.aspfaq.com/
http://support.microsoft.com/
=============== =============== ======
Jul 19 '05 #5

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

Similar topics

1
3781
by: Axel Schwenke | last post by:
Hello once again! What kind of possibilities may I use to store information out of a form? I'm working on a survey for our company. Therefor I created a html-document with a form in it. Till now I used the action "mailto:" to return the rsults of that form. But I think there must be better ways. I could save the survey-html-file on one of our fileservers, so that
3
5957
by: Steve Wright | last post by:
I want to build an email subject containing text and a form field. Have have got so far but all I seem to be able to do is generate another page in the browser with a text string. (code attached) I think that some how I need to pass the generated string as the action but can't figure how to do it. Can someone please tell me where I am going wrong and maybe suggest a solution.
2
2162
by: Robin | last post by:
I have set up a form with some basic input data, e.g. Name, Address, Telephone number and a few selections from drop-down menus; and a submit button. I am using "mailto" to send the contents of the form when completed to an e-mail address; however I want the information from the form to be formatted in a particular way in the e-mails that are submitted. Can someone point me in the right direction here. Thanks Mike
12
3052
by: Matthew Wilson | last post by:
Hi, we are getting a lot of spam through our PHP Feedback form, and have set up a new field 'prove you're human', asking them to do some simple maths. What is the command for the PHP script itself, to say "this field must be equal to 9 or return the error page"? Thanks! Matt
5
1825
toxicpaint
by: toxicpaint | last post by:
Hi there. I can't seem to work out what I'm doing wrong here and I was wondering if you could help. I have a form to submit a question, but as the questions vary in nature, I want them to go to 3 or more e-mail addresses. I'm using a drop down menu to select the type of question the user wants to ask then using this to determine what e-mail address to pick. The cgi on the server is configured to only send an e-mail if the "mailto" field...
5
3906
by: -Lost | last post by:
I was writing the 7th installment to introducing my children to HTML and came upon something that I am not familiar with, evidently. http://foomanchu.com/standardize7.htm I have two mailto: forms near the bottom of that page. The first, entitled "classic mailto form" just uses POST. All spaces get conveyed just fine. The second, entitled "better classic mailto form" has +s instead of spaces. The only fundamental difference I can...
16
4179
by: Mike | last post by:
Hi, I have a form with some controls, and a different class that needs to modify some control properties at run time. Hoy can I reference the from so I have access to its controls and therefore being able to modify its properties?
1
1352
by: atiq | last post by:
I want the thank page to be displayed for about second after the user has submit the form and then to go to another URL say, http://www.google.com. Below is the code: <?php // $mailto - set to the email address you want the form // sent to, eg //$mailto = "youremailaddress@example.com" ; $mailto = 'atiqisthebest@hotmail.com' ; // $subject - set to the Subject line of the email, eg
1
1376
by: G. Morgan | last post by:
I don't have access to a server-side solution, so I guess Javascript is my only choice. I want to pass a bunch of form fields to an email, but unsure of how to add the multiple fields into the body section. What I want to add is the "dropdown" data merged into the body of the email. I found this example code (that works just the way I want it to, except I want to add more data).
0
9700
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9564
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10546
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10292
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10068
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7603
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5498
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4275
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.