Mekansm Collective is a data collection tool that helps companies or individuals collect online data to analyze and measure their internet campaign or initiatives.
Without even need to sign up, you could start using as simple as understaing One url:
http://mekansm.com/c?ProjectId=[your email]&URL=[url that target audience will be directed to]
For example:
http://mekansm.com/c?ProjectId=support@mekansm.com&URL=mekansm.com
It is flexible to add more variables into it as long as keeping the url variable at the back:
http://mekansm.com/c?ProjectId=[your email]&[name a]=[variable a]&[name b]=[variable b]...&URL=[url that target audience will be directed to]
Sign up using the email that you used to view the collected stats and you may create additional projects to avoid showing your email address as project id in the URL.
As online marketing gets popular today, companies adapt various platforms and channels for pushing content to target audience. For example, sending poasters over email is one very popular mean. However, have you ever wonder how effective is it. A way to track is through Google Analytics, but only when users click through the poster to a landing page. Have you wonder if the email was ever open and the poster was ever looked at?
You may configure below code in your email to track if the poster would be viewed and clicked.
<html> <a href="http://mekansm.com/c?ProjectId=[your email]&URL=[landing page url]"> <img src="http://mekansm.com/c?ProjectId=[your email]&URL=[poster url]" /> </a> </html>
Do you know that some email clients even support viewing forms directly and you could build your survey using email in html format without the need to look for survey hosting providers, and collect stats immediately.
You may configure below code in your email to start receiving responses.
<html> <form action="http://mekansm.com/c"> <div><label>Input A: </label><input type="text" name="name a" /></div> <div><label>Input B: </label><input type="text" name="name b" /></div> <!--Above variables are free to configure as you like, do remember to include below ones--> <input type="text" hidden="hidden" name="ProjectId" value="[your email]" /> <input type="text" hidden="hidden" name="URL" value="[landing page url upon survey completion]" /> <!--Keep URL input as the last input at all times for the url redirect to work--> <div><input type="submit" value="Submit" /></div> </form> </html>