Reputation: 1
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
Reputation: 1618
Try something like:
<form action="mailto:[email protected]">
<input name="cc">
</form>
Upvotes: 1