Hi friends i do one project in asp , in that i need to open a outlook express (with all fields are filled like from , to , sub , Body etc..)to send mail(i am aware of mailto:). Especially in Body i need to send a normal HTML file(Not as attachment) , Please help me to solve this issue. Thanks in advance
+1
A:
mailto: links. You can set things like
<a href="mailto:address?body=some_text;subject=Hi">Mail Me</a>
There's different parameters for different sections AND the parameters are limited to 255 characters so it might not be the best method.
Macha
2009-04-01 11:33:07
Yes , But i need to send a html file , so it is more than 255 characters, Please help me to find the solution..
Sakthivel
2009-04-01 11:40:36
Kobi
2009-04-01 12:06:12
I ran into problems with something like this and switching to ; fixed it for me. As for 255, that's just what I was told.
Macha
2009-04-01 12:14:14
A:
what about using 'POST' ?
<form action="mailto:[email protected]" method="post">
<input type="hidden" name="body" value="....." />
</form>
and submit it from JS?
Yossarian
2009-04-01 11:51:07