hrvat
Member
- Messages
- 71
- Reaction score
- 1
- Points
- 8
Hello !
I finishing one online mail solution which get data from the form and send the data through
user default mail client.
But, when I use Win LiveMail application I get unexpected values.
My peace of code is :
function fnSetAction(Prva){
if(Prva.body.value!="" ){
var sAction="mailto:marijan.ivicevic.bakulic@zg.t-com.hr";
Prva.action=sAction;
Prva.body.value="\n"+Prva.elements["adress"].value+"\n"+
Prva.elements["ta"].value+"\n";
}}
When I send this through Win LiveMail I get :
Why Windows LiveMail client transform empty spaces to + ?
regards
8)
I finishing one online mail solution which get data from the form and send the data through
user default mail client.
But, when I use Win LiveMail application I get unexpected values.
My peace of code is :
function fnSetAction(Prva){
if(Prva.body.value!="" ){
var sAction="mailto:marijan.ivicevic.bakulic@zg.t-com.hr";
Prva.action=sAction;
Prva.body.value="\n"+Prva.elements["adress"].value+"\n"+
Prva.elements["ta"].value+"\n";
}}
When I send this through Win LiveMail I get :
Why Windows LiveMail client transform empty spaces to + ?
regards
8)