D
D
damarkuzz2020-03-16 09:50:57
Email
damarkuzz, 2020-03-16 09:50:57

How to send checkbox data to email?

How to send the label text of the selected radio to the mail?
For example, with markup like this:

<form>
   <label><input type="radio">Пример 1</label>
   <label><input type="radio">Пример 2</label>
   <label><input type="radio">Пример 3</label>
</form>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Valera Karmanov, 2020-03-16
@motokraft

<form>
   <label><input type="radio" name="test" value="val_1">Пример 1</label>
   <label><input type="radio" name="test" value="val_2">Пример 2</label>
   <label><input type="radio" name="test" value="val_3">Пример 3</label>
</form>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question