472,106 Members | 1,341 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

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

Re: How to insert text on multiple lines - in "body" of mailto:


"G. Morgan" <no***@il.invalidwrote in message
news:87********************************@mypost.inv alid...
<I don't have access to a server-side app. so this must be done client
side.>

How do I get:
(thebody)+(dropdown) to appear on their own lines in the resulting email?
<snap>
<script>
function now()
{
var thebody=document.testform.thebody.value;
var dropdown=document.testform.dropdown.value;
window.location.href="mailto:no*****@invalid.com?s ubject=Mail Test&body="
+
(thebody)+(dropdown);
}
</script>
<snap>
Did you try <cr><lf[chr(10) + chr(13) or other way around] combination?
** Posted from http://www.teranews.com **
Aug 10 '08 #1
2 5034
On Aug 10, 6:53 pm, G. Morgan <no...@il.invalidwrote:
GArlington wrote:
Did you try <cr><lf[chr(10) + chr(13) or other way around] combination?

No, how would I do that?

--
It takes a big man to cry,
but it takes a bigger man to laugh at that man. -Jack Handey

Take back Usenet <-->http://improve-usenet.org
<a href="mailto:bl**@blah.com?Subject=thisSubject&Bod y=The message's
first paragraph.%0ASecond paragraph.%0AThird Paragraph.">mailto</a>
Aug 12 '08 #2
GArlington wrote:

[...]
<a href="mailto:b...@blah.com?Subject=thisSubject&Bod y=The message's
first paragraph.%0ASecond paragraph.%0AThird Paragraph.">mailto</a>
An end-of-line character can only be written as %0D%0A here. RFC 2368:

| Also note that line breaks in the body of a message MUST be
| encoded with "%0D%0A".

The example stands a bit further:

| <mailto:in*****@example.com?body=send%20current-
| issue%0D%0Asend%20index>

Also, spaces are not allowed, they must be written as %20. Apostrophes
can be written as ' or %27, my preference goes to %27. The variables
'thebody' and 'dropdown' must be percent-encoded before they can be
used inside an URI.

All together:

----------------------------------------------------------

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Feedback Form</title>
<script type="text/javascript">
function now() {
var thebody = escape(document.testform.thebody.value);
var dropdown = escape(document.testform.dropdown.value);
window.location.href = "mailto:no*****@invalid.com?"
+ "subject=Mail%20Test&body="
+ thebody
+ '%0D%0A'
+ dropdown;
}
</script>
</head>
<body>
<form name="testform" method="get" action="#"
onSubmit="return false;">
<p>
<textarea name="thebody" rows="5" cols="30">This is test.</textarea>
<br>
<select size="1" name="dropdown">
<option value="yes">yes</option>
<option value="no">no</option>
</selectchoose yes or no.</p>
<p><input type="button" value="click me" onClick="now();"></p>
</form>
</body>
</html>

----------------------------------------------------------

To the original poster: I've altered your code so that it's now valid
HTML (4.01, transitional), please see validator.w3.org for details.
Also be careful for leading/trailing end-of-line characters inside
<textarea>. I removed them in any case.

Hope this helps,

--
Bart
Aug 12 '08 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

6 posts views Thread by Gary N. | last post: by
16 posts views Thread by TJO | last post: by
4 posts views Thread by Viken Karaguesian | last post: by
1 post views Thread by Chad Dittmer | last post: by
15 posts views Thread by cj | last post: by

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.