Dec 18, 2001 #1 ffaucher IS-IT--Management Jul 31, 2000 102 CA I have the following html code: <a href="mailto:?subject=Test;body= Sentence1.Sentence2." "Window.status="text"> How can one create a paragraph space between Sentence1. and Sentence2? François Faucher
I have the following html code: <a href="mailto:?subject=Test;body= Sentence1.Sentence2." "Window.status="text"> How can one create a paragraph space between Sentence1. and Sentence2? François Faucher
Dec 18, 2001 1 #2 Boomerang Programmer Mar 30, 2001 766 NL Hi François, 1) with %0d you can seperate lines. 2) I think you have to code & instead of ; between " subject=Test" "body" So here is what I think you have to do: <a href="mailto:?subject=Test&body= Sentence1.%0dSentence2.">this link</a> see also Thread215-77050 Hope this helps, Erik Upvote 0 Downvote
Hi François, 1) with %0d you can seperate lines. 2) I think you have to code & instead of ; between " subject=Test" "body" So here is what I think you have to do: <a href="mailto:?subject=Test&body= Sentence1.%0dSentence2.">this link</a> see also Thread215-77050 Hope this helps, Erik
Dec 24, 2001 Thread starter #3 ffaucher IS-IT--Management Jul 31, 2000 102 CA Unfortunately, didn't work for me, the text stays all together with %0d or without. François Faucher Upvote 0 Downvote
Dec 24, 2001 Thread starter #4 ffaucher IS-IT--Management Jul 31, 2000 102 CA I just discovered that %0A create the line feed. François Faucher Upvote 0 Downvote