Website Integration Guide

Know your Newschannel ID

Before implementing a website form or a subscribe link to your website, you have to know your Newschannel ID. Newschannel ID is 10 characters long.

You can find your Newschannel ID by logging into your account selecting the newschannel which id you want to know.

Method 1. Providing a link to the subscribtion page

Easiest way to let your visitors subscribe to your newschannel is to provide them a simple URL to the subscription page.

The URL is something like:
http://www.rocketresults.com/subscribe/newschannelid

Remember to replace newschannelid with your actual Newschannel ID.

Method 2. Create HTML form

When creating forms, remember always to send email_address field as a POST method to the url http://www.rocketresults.com/subscribe/newschannelid.

Example:

<form
	method="POST"
	action="http://www.rocketresults.com/subscribe/newschannelid"
	target="_blank">
	
	<p>To signup for my newsletter, please enter your email address:</p>
	<p><input type="text" name="email_address" /></p>
	<p><input type="submit" value="Signup!" /></p>
</form>

In this example we use target="_blank" because we want to open the result in a new window. We recommend this method, because it more clearer way to the end user.

Questions, problems? We want to hear from you: support@rocketresults.com

Rocket Results is another fine product of Turbulenssi Interactive Ltd. (c) 2008 Turbulenssi Interactive Ltd.