email parsing automation

Email Parser

Extract data from emails and automate your workflow

The forum is now read only. Please, go to the the main Email Parser website if you need help.
Need help configuring the program? Have any questions regarding its use?
Can any one please help.

Is it possible to use the following html script below in an action to fill the details for the form as for example:
<input name="api_id" type="text" value="123456"> became:
<input name="api_id" type="text" value="[Name]">
***********************************

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form method="post" action="http://myweb.com/sendMessage.php">
API_ID: <input name="api_id" type="text" value="123456">
<br/>
Username: <input name="user" type="text" value="user123">
<br/>
Password: <input name="password" type="password" value="pass99">
<br/>

Mobile Number: <input name="to" type="text" value="0123456789">
<br/>
Message Text: <textarea name="text">Thank you for your information.</textarea>
<br/>
<input type="submit" value="Send my SMS">
</form>
</body>
</html>
Hello heuer

Email&Parser scripts are strictly c# scripts, not HTML code or similar. If you want to fill an HTML form as part of an action consider writting a c# script that opens the URL of that HTML form with the appropiare parameters.