NAME: relay.graphicstech.com

SYNOPSIS: Application for relaying http form posts via Email

EXAMPLE 1:

<form method="POST" action="http://relay.graphicstech.com/">
        <input type=hidden name=Subject value="Test message from your website">
        <input type=hidden name=To value="you@yourdomain.com">
       
        Email (from): <input type=text name=Email size=20><br>
        Test1: <input type=text name=test1 size=20><br>
        Test2:<br><textarea rows=4 name=test3 cols=22></textarea><br>
        <input type=submit value=Submit>
</form>


EXAMPLE 2: [Reccomended]

<form method="POST" action="http://relay.graphicstech.com/">
        <input type=hidden name=Subject value="Test message from your website">
        <input type=hidden name=To_b64 value="eW91QHlvdXJkb21haW4uYWJj">
        <input type=hidden name=Email_b64 value='eW91QHlvdXJkb21haW4uYWJj'>
        <input type=hidden name=Redirect value="http://www.yourdomain.com/thankyou.html">
       
        Test1: <input type=text name=test1 size=20><br>
        Test2:<br><textarea rows=4 name=test3 cols=22></textarea><br>
        <input type=submit value=Submit>
</form>

 

Field Description
Subject The message subject
Redirect The URL of your confirmation page (i.e. http://www.something.com/thankyou.html)
To The Email address the message will be delivered to
To_b64 Same as the "To" field except the address is encoded using base64. This is useful to prevent spammers from capturing your Email Address
Email The Email address the message will appear to be sent from
Email_b64 Same as the "Email" field except the address is encoded using base64. This is useful to prevent spammers from capturing your Email Address

A free utility to encode Email addresses into base64 is available here.
 

DISCLAIMER:

This software is provided on an 'as is' basis and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the owner or service provider be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.