Ed Day
Ed Day

Reputation: 1

How can I place a var in a mailto post

I would like to input an email addy via a form then place that addy in the cc area of a mailto post. Is this possible &/or safe?

Upvotes: 0

Views: 26

Answers (1)

Xhacker Liu
Xhacker Liu

Reputation: 1618

Try something like:

<form action="mailto:[email protected]">
    <input name="cc">
</form>

Upvotes: 1

Related Questions