tags:

views:

51

answers:

2

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
Yes , But i need to send a html file , so it is more than 255 characters, Please help me to find the solution..
Sakthivel
Kobi
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
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