Saturday, 14 September 2013

How to pass variables to mailto method

How to pass variables to mailto method

I need to know if its possible to pass variables to the mailto: method.
I want to have something along the lines like this, so it opens a new
email on outlook.
var email = "random@random.random"
var subject = "test"
window.href = "mailto:email?subject=subject"
Now i want to know if i can pass these variables. I don't care about the
body of the email I just wanna have the email address and the subject line
passed in. I can't ActiveXObject because my code is on the server side
rather then the client side so it wont have permission to create objects.
Or at least thats what i got from reading into opening outlook from
javascripts.

No comments:

Post a Comment