As easy as this...
<form action="https://api.form.rip/send-email" method="POST">
<input type="hidden" name="key" value="YOUR_FORM.RIP_KEY">
<input type="text" name="message">
<input type="email" name="email" value="REPLY_EMAIL">
<input type="submit" value="Send">
</form>
What is form.rip for?
Limited Static Sites!
You can use form.rip in all static sites
Simple but Powerfull forms!
You can set up extra attributes like, back url, to return to your site, and make your site more dinamic.
Our Licencies.
Starter
$1
monthly
- 20 submissions / month
- Extra Parameters
- Attachment support
- Ajax Functionality
- Ajax Custom Fields
Standard
$3
monthly- 50 submissions / month
- 1 Extra Parameters
- Attachment support
- Ajax Functionality
- Ajax Custom Fields
Premium
$5
monthly- Unlimited submissions
- All Extra Parameters
- Attachment support
- Ajax Functionality
- Ajax Custom Fields
You can send aditional parameters to explore extra functionality.
subject_
<input type="hidden" name="subject_"/>
This value is used for the email's subject, so that you can quickly reply to submissions without having to edit the subject line each time.
This value is used for the email's subject, so that you can quickly reply to submissions without having to edit the subject line each time.
name_
<input type="text" name="name_"/>
This value is used for set the client / user's name, and it'll be send inside email's body.
This value is used for set the client / user's name, and it'll be send inside email's body.
cel_number_
<input type="text" name="cel_number_"/>
This value is used for set the client / user's cellphone number, and it'll be send inside email's body.
This value is used for set the client / user's cellphone number, and it'll be send inside email's body.
attachment_
<input type="file" name="attachment_[]"/>
This value is used for the email's attachments, so that you can select files and send it like email's attachments.
This value is used for the email's attachments, so that you can select files and send it like email's attachments.
back_url
<input type="hidden" name="back_url" value="http://your_back_url"/>
Provide an URL to go back when the email has been sent. We return the property "form_rip_result" by post whith values "SENT" or "ERROR".
Provide an URL to go back when the email has been sent. We return the property "form_rip_result" by post whith values "SENT" or "ERROR".
v_card
<input type="hidden" name="v_card" value="VCARD VERSION (3.0 or 2.1)"/>
Use this parameter if you want attach a VCARD contact into the message.
Use this parameter if you want attach a VCARD contact into the message.
WARNING: name_ and cel_number_ are required for use v_card parameter.
Ajax Full Functionality
var data = new FormData();
data.append("key", "your_formrip_key");
data.append("message", "your_msg");
data.append("email", "reply_email");
// CUSTOM FIELDS //
data.append("my_custom_field_1", "my_custom_field_1");
data.append("my_custom_field_2", "my_custom_field_2");
// ATTACHMENTS //
data.append('attachment_[]', $('#file')[0].files[0]);
$.ajax({
url: "https://api.form.rip/send-email" ,
method: "POST" ,
contentType: false ,
processData: false ,
data: data
});
data.append("key", "your_formrip_key");
data.append("message", "your_msg");
data.append("email", "reply_email");
// CUSTOM FIELDS //
data.append("my_custom_field_1", "my_custom_field_1");
data.append("my_custom_field_2", "my_custom_field_2");
// ATTACHMENTS //
data.append('attachment_[]', $('#file')[0].files[0]);
$.ajax({
url: "https://api.form.rip/send-email" ,
method: "POST" ,
contentType: false ,
processData: false ,
data: data
});