Home > Articles > Business & Management

Key Components of a Memetic

To implement a memetic, you need to perform two steps:

  1. Identify a source of shareable content. Typically a page on your site containing content—either information or interactive web applications (such as computations)—that users are likely to want to share with their friends.

  2. Implement a sharing mechanism. Typically an interactive form you put on the page containing the shareable content, which helps your users share the content with their friends.

We'll examine each step in turn.

Identify a Source of Shareable Content

First, you need to identify those pages on your site containing content that users are likely to want to share with their friends—the shareable content. Without shareable content, the memetic simply won't work. Now, it's very important for you to make the distinction between interesting/valuable content and shareable content. There may be content on your site that users find valuable, but they won't share with their friends—they'll keep it to themselves. For example, suppose you have a site dedicated to recipes, and you identify several great recipes that you're certain your users will love. Now, these recipes are certainly valuable; however, they're not necessarily shareable. Many cooking enthusiasts like to keep great recipes to themselves—so that they're the only ones in their circle of friends who know how to make those dishes.

If your site is based on the autonomous business model, your users should be the primary providers of content, and therefore any page on your site that displays a user contribution is a source of shareable content. The reason is that users are contributing content that they think is valuable and that they want to share with the community on your site. Thus, it's highly likely that another user will find the content valuable and want to share it with his or her friends. For example, in our sample ProfessorF site, the hacker sayings page is a good source of shareable content (see Figure 2).

Figure 2 A page that can serve as a source of shareable content on the ProfessorF site.

Users contribute hacker sayings that they'd like to share with other users. It's highly likely that another user will read a hacker saying, decide it's good, and want to share it with his or her friends. Thus, the hacker sayings page is a source of shareable content. For similar reasons, pages with bulletin boards and polls are good sources of shareable content. With a source of shareable content identified, the next step is to build the mechanism that allows your users to share this content with others.

Implement a Sharing Mechanism

The goal of the sharing mechanism is to help your users share content on your site with their friends (note the plural, friends). The more friends they share your content with, the more new users your site receives. Hopefully, these new users will then use your memetic to bring their friends to your site, and the process will continue ad infinitum. Every sharing mechanism consists of two components:

  • Contact gatherer. A means of getting the contact information of a user's friends or associates. On a web page, the contact gatherer is usually just a form with a text box where the user can type in his or her friends' email addresses.

  • Content relayer. A means of sending content to the contact(s) that a user specifies. On a web page, the content relayer is usually a script that sends email to a list of contacts provided by the user.

Setting Up the Contact Gatherer

The type of contact information you gather depends on how you want to send your site's content to a user's friends. Currently, email provides the easiest means of relaying content over the Internet, especially if that content is on a web page. However, in the future it may be just as easy to send content via instant messaging (IM), in which case the contact gatherer would gather the IM addresses of the user's friends. In this section, we'll cover the simplest contact gatherer: a form with a text box that allows users to type in the email addresses of their friends. The HTML for such a form would look like Listing 1.

Listing 1[em]Simple Form for Gathering Email Addresses

<FORM METHOD=POST ACTION="mail_content.asp">
E-mail this phrase to a friend:
 <INPUT TYPE=TEXT  NAME=emails>
 <INPUT TYPE=SUBMIT VALUE="GO" ><BR>
(separate multiple e-mails with a semi-colon)
</FORM>

This HTML should be inserted inside the script that randomly generates a hacker saying. To keep the code uncluttered here, I won't show the entire code for that script (see Listing 9 in my Week 6 article). Notice that the form calls a script named mail_content.asp, which we have yet to write. In a browser, this contact gatherer form would look like Figure 3.

Figure 3 Form for gathering email addresses.

Next we write the script (named mail_content.asp) that emails the site content to those addresses specified in the text box. This script is part of the content relayer.

Setting Up the Content Relayer

The content relayer is deceptively complex. While it's true that its role is to relay your site's content to a user's friends, the details of how you deliver the information play a role in whether the friends visit your site. To use an analogy, a comedian may have a good joke but deliver it poorly, and the audience won't laugh. Similarly, you may have great content, but if your content relayer delivers this content "incorrectly," the recipients won't visit your site. What does it mean to deliver the content correctly, so that a user's friends are enticed to visit your site? If you're using an email memetic, you need these features:

  • A good From: and Subject: line. The email your memetic sends out is supposed to make recipients visit your site. However, if the recipients don't open the email in the first place, they certainly won't visit your site. One of the big reasons that email advertisements fail is that it's obvious from the email's From: and Subject: lines that the message is spam, and users just delete them. You need to your email not look like spam, so recipients will open it and get your message.

  • A good email message. The user may open your email, but won't visit your site unless you provide a good incentive to do so in your message. For example, suppose you have a riddle web site. You've built a memetic that allows users to email these riddles to friends. If the email includes both the riddle and the answer, the recipient doesn't have an incentive to visit your site, as you've already provided the entire riddle. What you need to do is email the question, but not the answer. More generally, you want to send the build-up but have recipients visit your site for the punch line.

Let's see how the conditions above apply to the content relayer for our hacker sayings site. A hacker saying consists of a phrase (phrase), conditions for using the phrase (usage), and examples of using the phrase (example). Suppose we've defined the variables shown in Listing 2.

Listing 2-Storing the Pieces of a Hacker Saying in Three Variables

<%
...
 set rs = conn.execute("select * from hackerphrase where phraseid=" & n)
...
 phrase = rs("phrase")
 usage  = rs("usage")
 example = rs("example")
%>

Instead of sending all three parts that make up a hacker saying, we send just the phrase. To send just the phrase, we first create a HIDDEN control named phrase and set its value to the phrase, <%=phrase%> (compare Listing 3 to Listing 1).

Listing 3-Storing the Hacker Phrase in a HIDDEN Control

<FORM METHOD=POST ACTION="mail_content.asp">
E-mail this phrase to a friend:
 <INPUT TYPE=TEXT  NAME=emails>
 <INPUT TYPE=SUBMIT VALUE="GO" ><BR>
(separate multiple e-mails with a semi-colon)
 <INPUT TYPE=HIDDEN NAME="phrase" VALUE="<%=phrase%>">
</FORM>

Next, we create the mailing script mail_content.asp. Before doing so, let's review just the mail script we wrote in Week 12 (see Listing 4).

Listing 4-Mail Script from Week 12, Listing 11 (sans HTML)

<%
set mail=server.CreateObject("CDONTS.NEWMAIL")
'
' Set delivery parameters
'
mail.from="fred@flintstone.com"
mail.to ="nick.flor@verizon.net"
'
' Set message parameters
'
mail.subject = "Hello"
mail.body  = "Dear Barney," & vbcrlf & _
                vbcrlf & _
        "How are you?" & vbcrlf & _
                vbcrlf & _
        "Fred"
'
' Send the mail
'
mail.send
'
' Delete the mailing object
'
set mail=nothing
%>

In this mailing script, all values were hard-coded. For the memetic, we'll replace many of the hard-coded values with the values in our form in Listing 3. Before doing so, though, let's perform some basic error-checking. Specifically, we check whether the user has clicked the GO button without typing any email addresses. This basic error-checking code is bold in Listing 5.

Listing 5-Checking for Email Addresses

<%
v_emails=trim(request.form("emails"))
if v_emails<>"" then
 set mail=server.CreateObject("CDONTS.NEWMAIL")
 '
 ' Set delivery parameters
 '
 mail.from="fred@flintstone.com"
 mail.to ="nick.flor@verizon.net"
 '
 ' Set message parameters
 '
 mail.subject = "Hello"
 mail.body  = "Dear Barney," & vbcrlf & _
                 vbcrlf & _
         "How are you?" & vbcrlf & _
                 vbcrlf & _
         "Fred"
 '
 ' Send the mail
 '
 mail.send
 '
 ' Delete the mailing object
 '
 set mail=nothing
end if
%>

Briefly, the textbox named emails contains the email address(es) of the user's friend(s). After using the trim function to remove any whitespace that the user may have typed before or after the email address, and then storing this value in v_emails, the code uses an if-then statement so that it only sends the email if the user typed something (v_emails is not equal to a blank string: v_emails<>"").

We can now start replacing the hard-coded values with ones from our form. First, we set the to parameter for the mailing object (mail) to v_emails. Remember that it contains the email address(es) that the user entered (see Listing 6).

Listing 6-Setting the Recipient(s)

<%
v_emails=trim(request.form("emails"))
if v_emails<>"" then
 set mail=server.CreateObject("CDONTS.NEWMAIL")
 '
 ' Set delivery parameters
 '
 mail.from="fred@flintstone.com"
 mail.to = v_emails
 '
 ' Set message parameters
 '
 mail.subject = "Hello"
 mail.body  = "Dear Barney," & vbcrlf & _
                 vbcrlf & _
         "How are you?" & vbcrlf & _
                 vbcrlf & _
         "Fred"
 '
 ' Send the mail
 '
 mail.send
 '
 ' Delete the mailing object
 '
 set mail=nothing
end if
%>

Next, we need to set the from and subject parameters to values that will make the recipient want to open and read the email. First, let's consider what to do for the from line. You should always set the from parameter to a valid email address—which, unfortunately, suggests to most users that your email is spam. However, you can disguise the email address by putting some label in parentheses after the email address. In most mailing programs, whatever label you put between the parentheses shows up in the email's From: line. For example, if the valid email address is foo@bar.com and you want to make it seem like the email came from a friend, you can put DUDE! in parentheses after the email address: foo@bar.com (DUDE!) and set the from parameter to this value.

Next, we need to set the subject parameter to something interesting that makes the user want to open the email. Most people like opening funny things, so we'll set the subject parameter to Now this is funny (see Listing 7).

Listing 7-Specifying the from and subject Parameters

<%
v_emails=trim(request.form("emails"))
if v_emails<>"" then
 set mail=server.CreateObject("CDONTS.NEWMAIL")
 '
 ' Set delivery parameters
 '
 mail.from="foo@bar.com (DUDE!)"
 mail.to = v_emails
 '
 ' Set message parameters
 '
 mail.subject = "Now this is funny..."
 mail.body  = "Dear Barney," & vbcrlf & _
                 vbcrlf & _
         "How are you?" & vbcrlf & _
                 vbcrlf & _
         "Fred"
 '
 ' Send the mail
 '
 mail.send
 '
 ' Delete the mailing object
 '
 set mail=nothing
end if
%>

If we've set good values for the from and subject parameters, the recipient will open the email message. So our next step is to persuade the recipient to visit the site, via a good message. Keep the message brief, emphasizing the value that the recipient will receive by visiting your site. Earlier, I mentioned sending the build-up but not the punch line. In terms of our hacker sayings, this amounts to sending the phrase but not the conditions for its usage and the examples of its use. Of course, you can't just sent the phrase; you need to provide some minimal context for the phrase, along with a link to your site. In terms of our hacker sayings, an example of minimal context would be something like this:

A friend thought you'd like this hacker saying: (insert saying).
To see what it means, visit (insert your web site's address).

Set the mailing object's body parameter to this minimal content (see Listing 8).

Listing 8-Setting the Body Parameter

<%
v_emails=trim(request.form("emails"))
if v_emails<>"" then
 set mail=server.CreateObject("CDONTS.NEWMAIL")
 '
 ' Set delivery parameters
 '
 mail.from="foo@bar.com (DUDE!)"
 mail.to = v_emails
 '
 ' Set message parameters
 '
 mail.subject = "Now this is funny... "
 mail.body  = "A friend thought you'd like this hacker saying:" & _
         vbcrlf & vbcrlf & request.form("phrase") & vbcrlf & _
                               vbcrlf & _
         "To see what it means, visit:"      & vbcrlf & _
         "http://www.ProfessorF.com/phrase.asp"
 '
 ' Send the mail
 '
 mail.send
 '
 ' Delete the mailing object
 '
 set mail=nothing
end if
%>

You're almost done. You need to end your script by sending the user back to the hacker sayings page using the response.redirect() function (see Listing 9).

Listing 9-Redirecting the User to the Hacker Sayings Page

<%
v_emails=trim(request.form("emails"))
if v_emails<>"" then
 set mail=server.CreateObject("CDONTS.NEWMAIL")
 '
 ' Set delivery parameters
 '
 mail.from="foo@bar.com (DUDE!)"
 mail.to = v_emails
 '
 ' Set message parameters
 '
 mail.subject = "Now this is funny... "
 mail.body  = "A friend thought you'd like this hacker saying:" & _
         vbcrlf & vbcrlf & request.form("phrase") & vbcrlf & _
                               vbcrlf & _
         "To see what it means, visit:"      & vbcrlf & _
         "http://www.ProfessorF.com/phrase.asp"
 '
 ' Send the mail
 '
 mail.send
 '
 ' Delete the mailing object
 '
 set mail=nothing
end if
response.redirect("phrase.asp")
%>

And that's the basic technology underlying an email memetic! Figure 4 shows an example of this memetic in action. After clicking the GO button, the recipient gets an email that looks similar to Figure 5.

Figure 4 User typing a friend's email address (fred@flintstone.com) in the text box.

Figure 5 Here's how the message looks.

Notice that the From: line contains the label we put in parentheses, DUDE!, and not the actual email address. Moreover, the actual email message contains only the hacker phrase and not the conditions for its use or the examples of its usage. The recipient needs to visit the ProfessorF site to get the entire hacker saying, and can get there by simply clicking the link in the email rather than typing the site's address in a browser.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020