android - Form does not send data to e-mail -




i'm trying send data of form e-mail, nothing happens. how can fix it? i'm new @ programming language , love guidance!

<title>solicitud de vendedor honorario</title>  <form action="mailto:erocha@newenergypr.com" method="post">   <table>     <tr><td colspan="2" align="center" bgcolor="#ff8000"><h2>solicitud de vendedor honorario</h2></td></tr>     <tr><td colspan="2" align="center" bgcolor="#d4d4d4">adiestramiento</td></tr>     <tr>       <td colspan="2" align="center" bgcolor="#1b4f72">         <select name="yesno" id="yesno" size="1">       <option value="yes">yes</option>       <option value="no">no</option>         </select>       </td>     </tr>         <tr><td bgcolor="#d4d4d4">nombre:</td>       <td><input type="text" id="nombre" size="14"></td></tr> 

...

    <tr><td colspan="3" align="center" bgcolor="#ff8000"><h2>disponibilidad de tiempo</h2></td></tr>      <tr><td align="center" bgcolor="#d4d4d4"><b>domingo</b></td>       <td bgcolor="#d4d4d4"><b>desde:</b><select id="domingodesde" size="1">         <option value="0">no disponible</option>         <option value="00">00:00am</option>       <option value="01">01:00am</option>       <option value="02">02:00am</option> 

...

more of those, same other weekdays... checkboxes:

<tr>       <td align="center" bgcolor="#f1c40f"><b>ponce</b></td>       <td bgcolor="#d4d4d4">         <input type="checkbox" id="arr" value="arroyo">arroyo<br>         <input type="checkbox" id="coa" value="coamo">coamo<br>       <tr><td colspan="2" align="center"><input type="submit" value="submit"></td></tr> 

the app looks this:

http://imgur.com/2hiupkw http://imgur.com/leejryd

once submited, data selected should sent e-mail.

edit: see info trying receive webview. if can retrieve info webview such. found here. after have parse content string.

webview.evaluatejavascript("(function(){return window.document.body.outerhtml})();",    new valuecallback<string>() {       @override       public void onreceivevalue(string html) {        }   }); 




wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -