function process_footer_subscriber_acquisition_form()
{
    /* Initialize variables */
    $error = array();
    $subscriber_acquisition_email = isset($_POST["footerSubscriberAcquisitionEmail"]) ? $_POST["footerSubscriberAcquisitionEmail"] : '';
    /* Clean email address */
    if (strlen($subscriber_acquisition_email) <= 0) {
        $error[] = "Please enter your email.";
    } else {
        if (!preg_match("/^([a-z0-9_]\\.?)*[a-z0-9_]+@([a-z0-9-_]+\\.)+[a-z]{2,3}\$/i", stripslashes(trim($subscriber_acquisition_email)))) {
            $error[] = "Please enter a valid e-mail address.";
        }
    }
    /* Return errors found or writes the subscriber specific info to the master capture file. */
    if (sizeof($error) > 0) {
        $size = sizeof($error);
        $error_message = '<div class="form-errors-container">';
        for ($i = 0; $i < $size; $i++) {
            if ($i == 0) {
                $error_message .= '<h3 class="form-error-title">Form Errors</h3>';
            }
            $error_message .= '<p class="form-error">- ' . $error[$i] . '</p>';
        }
        $error_message .= '</div>';
        echo display_footer_subscriber_acquisition_form($error_message);
    } else {
        /* process_capture arguments: $captured_email, $captured_name, $capture_type, $capture_id */
        /* process_capture is in global functions file */
        process_capture($subscriber_acquisition_email, null, 'footer-subscriber-acquisition', null);
        echo '
			<section class="footer-subscriber-acquisition">
				<div class="inner-container">
					<h3 class=\\"title\\">Thanks for signing up!</h3>
					<p class=\\"subtitle\\">Sam\'s emails will come from <a href="mailto:Hello@InspireYourPeople.com">Hello@InspireYourPeople.com</a>.</p>
				</div>
			</section>
		';
    }
}
function process_post_etf_send($post_etf_email_to, $post_etf_email_from, $post_etf_from_name, $post_etf_message, $post_etf_post_id)
{
    /* Initialize variables */
    $current_year = date('Y');
    $url_base = 'http://www.inspireyourpeople.com';
    $post_etf_permalink = get_permalink($post_etf_post_id);
    $post_etf_post_excerpt = apply_filters('get_the_excerpt', get_post_field('post_excerpt', $post_etf_post_id));
    $post_etf_title = get_the_title($post_etf_post_id);
    $post_etf_subject_line = $post_etf_title . ' by InspireYourPeople.com';
    /* Imports the necessary scripts to control MIME being sent. Use 'find . -name swift_required.php' to find location via ssh */
    require_once '/etc/apache2/sites-available/vendor/swiftmailer/swiftmailer/lib/swift_required.php';
    //		require_once '/usr/share/pear/swift_required.php';
    /* [ Sets the transport method to PHP Mail ] */
    $transport = Swift_MailTransport::newInstance();
    /* [ Create the Mailer using the created Transport ] */
    $mailer = Swift_Mailer::newInstance($transport);
    /* [ Create the message ] */
    $message = Swift_Message::newInstance($post_etf_subject_line)->setFrom(array($post_etf_email_from => $post_etf_from_name))->setTo(array($post_etf_email_to))->setBcc(array('*****@*****.**', '*****@*****.**'))->setBody('
			<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
			<html xmlns="http://www.w3.org/1999/xhtml">
			<head>
				<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
			</head>

			<body style="background:#F2F2F2; padding:0; margin:0;">

				<!-- Gray BG -->
				<div style="background:#F2F2F2; width:100%;"><table width="100%" border="0" cellspacing="0" bgcolor="#F2F2F2" cellpadding="0" align="center" style="background:#F2F2F2; width:100%;"><tr><td>

					<!-- White BG Wrapper -->
					<table width="750" border="0" cellspacing="0" bgcolor="#FFFFFF" cellpadding="0" align="center" style="margin:0 auto;"><tr><td>

						<!-- Main Content -->
						<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="570">

							<!-- Spacer -->
							<tr><td height="35">&nbsp;</td></tr>

							<!-- Copy -->
							<tr><td>
								<!-- Emailer name -->
								<p style="color:#474747; font-family:\'HelveticaNeue-Light\', \'Helvetica Neue Light\', \'Helvetica Neue\', helvetica, arial, sans-serif; font-size:26px; font-weight:300; line-height:34px; margin-bottom:1em; margin-top:0; text-align:left;">
									<strong>' . $post_etf_from_name . '</strong> sent you this (<a href="http://www.inspireyourpeople.com/?utm_source=iyp-post-etf&utm_medium=email&utm_content=text_post+title+from+inspireyourpeople&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">from InspireYourPeople.com</a>):
								</p>

								<!-- Emailer message, if supplied -->
								' . $post_etf_message . '

								<p style="color:#666666; font-family:\'HelveticaNeue-Light\', \'Helvetica Neue Light\', \'Helvetica Neue\', helvetica, arial, sans-serif; font-size:22px; font-weight:300; line-height:30px; margin-bottom:1em; margin-top:0; text-align:left;">
									<a href="' . $post_etf_permalink . '?utm_source=iyp-post-etf&utm_medium=email&utm_content=text_post+title&utm_campaign=inspireyourpeople+post+etf" style="color:#4C4C4C; text-decoration:none;">' . $post_etf_subject_line . '</a>
								</p>

								<p style="color:#666666; font-family:\'HelveticaNeue-Light\', \'Helvetica Neue Light\', \'Helvetica Neue\', helvetica, arial, sans-serif; font-size:18px; font-weight:300; line-height:24px; margin-bottom:2em; margin-top:0; text-align:left;">
									' . $post_etf_post_excerpt . '
								</p>

								<p style="color:#FFFFFF; font-family:\'Helvetica Neue\', helvetica, arial, sans-serif; font-size:20px; font-weight:300; line-height:30px; margin-bottom:0; margin-top:0; text-align:center;">
									<a href="' . $post_etf_permalink . '?utm_source=iyp-post-etf&utm_medium=email&utm_content=button+-+see+the+sales+tool&utm_campaign=inspireyourpeople+post+etf" style="background-color:#1A80D3; border:2px solid #1A80D3; color:#FFFFFF; display:inline-block; padding:0.5em 1.5em; text-decoration:none;">See the thought</a>
								</p>
							</td></tr>

						</table> <!-- END Main Content -->

						<!-- Closing Content -->
						<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="500">

							<!-- Spacer -->
							<tr><td height="20">&nbsp;</td></tr>

							<!-- URL & Number -->
							<tr><td align="center">
								<p style="color:#666666; font-family:helvetica, arial, sans-serif; font-size:16px; font-weight:300; line-height:24px; margin-top:0; margin-bottom:0; text-align:center;">
									<a href="http://www.inspireyourpeople.com/?utm_source=iyp-post-etf&utm_medium=email&utm_content=text+-+inspireyourpeople-dot-com&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3;">InspireYourPeople.com</a><br />
									<a href="tel:18669524483" style="color:#666666; text-decoration:none;">1-866-952-4483</a>
								</p>
							</td></tr>

						</table> <!-- END Closing Content -->


						<!-- Brand Footer -->
						<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="650">

							<!-- Line Spacer -->
							<tr><td height="40" style="border-bottom:1px solid #D7D7D7;">&nbsp;</td></tr>
							<tr><td height="35">&nbsp;</td></tr>

							<!-- Header -->
							<tr><td align="center">
								<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:30px; font-weight:300; line-height:38px; margin-bottom:0; margin-top:0; text-align:center;">
									Inspiring messages for your team...
								</p>
							</td></tr>

							<!-- Spacer -->
							<tr><td height="30">&nbsp;</td></tr>

							<!-- Logos & Copy -->
							<tr><td>
								<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="630">
									
									<tr>
										
										<td width="300">
											<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="300">
												<tr>
													<td width="115" valign="middle">
														<a href="http://www.inspireyourpeople.com/212-the-extra-degree/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+212+logo&utm_campaign=inspireyourpeople+post+etf"><img src="http://www.inspireyourpeople.com/images/dedicateds/logos/212-115x88.jpg" width="115" height="88" alt="212&deg; the extra degree&reg;" border="0" /></a>
													</td>
													
													<td width="185" valign="middle">
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:15px; font-weight:300; line-height:20px; margin-bottom:0.1em; margin-top:0.5em; text-align:left;">
															Inspire extra effort,<br />care and attention.
														</p>
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:18px; font-weight:300; line-height:24px; margin-bottom:0; margin-top:0; text-align:left;">
															<a href="http://www.inspireyourpeople.com/212-the-extra-degree/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+212+the+extra+degree&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3;">212&deg; the extra degree</a>
														</p>
													</td>
												</tr>
											</table>
										</td>
											
										<!-- Spacer -->
										<td width="30">&nbsp;</td>

										<td width="300">
											<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="300">
												<tr>
													<td width="115" valign="middle">
														<a href="http://www.inspireyourpeople.com/cross-the-line/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+cross+the+line+logo&utm_campaign=inspireyourpeople+post+etf"><img src="http://www.inspireyourpeople.com/images/dedicateds/logos/cross-the-line-115x88.jpg" width="115" height="88" alt="Cross The Line&reg;" border="0" /></a>
													</td>
													
													<td width="185" valign="middle">
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:15px; font-weight:300; line-height:20px; margin-bottom:0.1em; margin-top:0.5em; text-align:left;">
															Inspire commitment,<br />effort, and resilience.
														</p>
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:18px; font-weight:300; line-height:24px; margin-bottom:0; margin-top:0; text-align:left;">
															<a href="http://www.inspireyourpeople.com/cross-the-line/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+cross+the+line&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3;">Cross The Line</a>
														</p>
													</td>
												</tr>
											</table>
										</td>

									</tr>

									<!-- Spacer -->
									<tr><td height="30" colspan="3">&nbsp;</td></tr>

									<tr>
										
										<td width="300">
											<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="300">
												<tr>
													<td width="115" valign="middle">
														<a href="http://www.inspireyourpeople.com/smile-and-move/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+smile+and+move+logo&utm_campaign=inspireyourpeople+post+etf"><img src="http://www.inspireyourpeople.com/images/dedicateds/logos/smile-and-move-115x88.jpg" width="115" height="88" alt="Smile &amp; Move&reg;" border="0" /></a>
													</td>
													
													<td width="185" valign="middle">
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:15px; font-weight:300; line-height:20px; margin-bottom:0.1em; margin-top:0.5em; text-align:left;">
															Encourage better<br />attitudes and service.
														</p>
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:18px; font-weight:300; line-height:24px; margin-bottom:0; margin-top:0; text-align:left;">
															<a href="http://www.inspireyourpeople.com/smile-and-move/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+smile+and+move&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3;">Smile &amp; Move</a>
														</p>
													</td>
												</tr>
											</table>
										</td>
										
										<!-- Spacer -->
										<td width="30">&nbsp;</td>
				
										<td width="300">
											<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="300">
												<tr>
													<td width="115" valign="middle">
														<a href="http://www.inspireyourpeople.com/lead-simply/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+lead+simply+logo&utm_campaign=inspireyourpeople+post+etf"><img src="http://www.inspireyourpeople.com/images/dedicateds/logos/lead-simply-115x88.jpg" width="115" height="88" alt="Lead Simply&trade;" border="0" /></a>
													</td>
													
													<td width="185" valign="middle">
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:15px; font-weight:300; line-height:20px; margin-bottom:0.1em; margin-top:0.5em; text-align:left;">
															Create better leaders (who create better teams).
														</p>
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:18px; font-weight:300; line-height:24px; margin-bottom:0; margin-top:0; text-align:left;">
															<a href="http://www.inspireyourpeople.com/lead-simply/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+lead+simply&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3;">Lead Simply</a>
														</p>
													</td>
												</tr>
											</table>
										</td>
										
									</tr>
									

									<!-- Spacer -->
									<tr><td height="30" colspan="3">&nbsp;</td></tr>

									<tr>
											
										<td align="center" colspan="3" width="300">
											<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="300">
												<tr>
													<td width="115" valign="middle">
														<a href="http://www.inspireyourpeople.com/love-your-people/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+love+your+people+logo&utm_campaign=inspireyourpeople+post+etf"><img src="http://www.inspireyourpeople.com/images/dedicateds/logos/love-your-people-115x88.jpg" width="115" height="88" alt="Love Your People&reg;" border="0" /></a>
													</td>
													
													<td width="185" valign="middle">
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:15px; font-weight:300; line-height:20px; margin-bottom:0.1em; margin-top:0.5em; text-align:left;">
															Encourage more trust<br />and accountability.
														</p>
														<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:18px; font-weight:300; line-height:24px; margin-bottom:0; margin-top:0; text-align:left;">
															<a href="http://www.inspireyourpeople.com/love-your-people/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+love+your+people&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3;">Love Your People</a>
														</p>
													</td>
												</tr>
											</table>
										</td>
										
									</tr>
									
								</table>
							</td></tr>
							
						</table> <!-- END Brand Footer -->

						<!-- Quick And Easy Ways To Inspire Footer -->
						<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="650">

							<!-- Line Spacer -->
							<tr><td height="45" style="border-bottom:1px solid #D7D7D7;">&nbsp;</td></tr>
							<tr><td height="35">&nbsp;</td></tr>

							<!-- Upcoming Meetings Header -->
							<tr><td align="center">
								<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:30px; font-weight:300; line-height:38px; margin-bottom:0.5em; margin-top:0; text-align:center;">
									Quick and easy ways to inspire your people
								</p>
							</td></tr>

							<!-- Product Links -->
							<tr><td>
								<table align="center" bgcolor="#FFFFFF" border="0" cellpadding="0" cellspacing="0" style="margin:0 auto;" width="615">

									<tr>
										<td width="75" valign="top" align="center">
											<p style="color:#1A80D3; font-family:helvetica, arial, sans-serif; font-size:18px; line-height:30px; margin-bottom:0; margin-top:0; text-align:center;">
												<a href="http://www.inspireyourpeople.com/books-and-booklets/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+books&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Books</a><br />
												<a href="http://www.inspireyourpeople.com/videos/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+videos&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Videos</a>
											</p>
										</td>

										<td width="180" valign="top" align="center">
											<p style="color:#1A80D3; font-family:helvetica, arial, sans-serif; font-size:18px; line-height:30px; margin-bottom:0; margin-top:0; text-align:center;">
												<a href="http://www.inspireyourpeople.com/meetings-discussions/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+meeting+packages&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Meeting Packages</a><br />
												<a href="http://www.inspireyourpeople.com/presentations/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+powerpoint+slides&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">PowerPoints&reg;</a>
											</p>
										</td>

										<td width="200" valign="top" align="center">
											<p style="color:#1A80D3; font-family:helvetica, arial, sans-serif; font-size:18px; line-height:30px; margin-bottom:0; margin-top:0; text-align:center;">
												<a href="http://www.inspireyourpeople.com/category/posters-and-prints/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+posters+and+banners&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Posters &amp; Banners</a><br />
												<a href="http://www.inspireyourpeople.com/category/mugs-and-water-bottles/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+mugs+water+bottles&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Mugs &amp; Water Bottles</a>
											</p>
										</td>

										<td width="160" valign="top" align="center">
											<p style="color:#1A80D3; font-family:helvetica, arial, sans-serif; font-size:18px; line-height:30px; margin-bottom:0; margin-top:0; text-align:center;">
												<a href="http://www.inspireyourpeople.com/category/pocket-cards/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+pocket+cards&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Pocket Cards</a><br />
												<a href="http://www.inspireyourpeople.com/gear/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+gifts+and+gear&utm_campaign=inspireyourpeople+post+etf" style="color:#1A80D3; text-decoration:none;">Gifts &amp; Gear</a>
											</p>
										</td>
									</tr>

								</table>
							</td></tr>

							<!-- Spacer -->
							<tr><td height="50">&nbsp;</td></tr>

						</table> <!-- END Quick And Easy Ways To Inspire Footer -->

						<!-- Connect With Us Footer -->
						<table align="center" bgcolor="#E5E5E5" border="0" cellpadding="20" cellspacing="0" style="margin:0 auto;" width="750">
							<tr><td align="center">
								<p style="color:#262626; font-family:helvetica, arial, sans-serif; font-size:20px; font-weight:300; line-height:40px; margin-bottom:0.1em; margin-top:0; text-align:center;">
									Connect with us:
								</p>
								<a href="https://www.facebook.com/nogomos" style="margin-right:5px;"><img src="http://www.inspireyourpeople.com/images/dedicateds/social-media/facebook-circle-30x30.png" alt="Facebook" width="30" height="30" border="0" /></a>
								<a href="https://twitter.com/inspiremypeople" style="margin-right:5px;"><img src="http://www.inspireyourpeople.com/images/dedicateds/social-media/twitter-circle-30x30.png" alt="twitter" width="30" height="30" border="0" /></a>
								<a href="https://plus.google.com/+SamParker212/posts" style="margin-right:5px;"><img src="http://www.inspireyourpeople.com/images/dedicateds/social-media/google-plus-circle-30x30.png" alt="Google Plus" width="30" height="30" border="0" /></a>
								<a href="https://www.linkedin.com/company/inspireyourpeople-com" style="margin-right:5px;"><img src="http://www.inspireyourpeople.com/images/dedicateds/social-media/linkedin-circle-30x30.png" alt="LinkedIn" width="30" height="30" border="0" /></a>
								<a href="https://www.instagram.com/inspire_your_people/"><img src="http://www.inspireyourpeople.com/images/dedicateds/social-media/instagram-circle-30x30.png" alt="Instagram" width="30" height="30" border="0" /></a>
							</td></tr>
						</table> <!-- END Connect With Us Footer -->

						<!-- Real People, Copyright Footer -->
						<table align="center" bgcolor="#262626" border="0" cellpadding="20" cellspacing="0" style="margin:0 auto;" width="750">
							<tr><td align="center">
								<p style="font-family:helvetica, arial, sans-serif;margin-top:1em; margin-bottom: 1.5em; color:#FFFFFF; font-size:20px; font-weight:500; line-height:22px; text-align:center;">
									We\'re real people here and we\'d love to help you. Really.
								</p>

								<p style="color:#656565; font-family:helvetica, arial, sans-serif; font-size:14px; line-height:22px; margin-bottom:1.5em; margin-top:0; text-align:center;">
									&copy; by <a href="http://www.inspireyourpeople.com/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+inspireyourpeople+dot+com&utm_campaign=inspireyourpeople+post+etf" style="color:#656565; text-decoration:none;">InspireYourPeople.com</a> &nbsp;|&nbsp; <a href="tel:18669524483" style="color:#656565; text-decoration:none;">1-866-952-4483</a><br />
									115 South 15th Street, Suite 502, Richmond, VA 23219
								</p>
							</td></tr>
						</table> <!-- END Real People, Copyright Footer -->

					</td></tr></table> <!-- END White BG Wrapper -->

				</td></tr></table></div> <!-- END Gray BG -->

			</body>
			</html>
		', 'text/html')->addPart('

' . $post_etf_from_name . ' sent you this (from InspireYourPeople.com):

' . $post_etf_text_message . '

-

' . $post_etf_subject_line . '
-----------

' . $post_etf_post_excerpt . '

--
See the sales tool
' . $post_etf_permalink . '
--

-------------

Inspiring messages for your team...

Inspire a little extra effort and attention. 212 the extra degree
http://www.inspireyourpeople.com/212-the-extra-degree/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+212+the+extra+degree&utm_campaign=inspireyourpeople+post+etf

Encourage better attitudes and service. Smile & Move
http://www.inspireyourpeople.com/smile-and-move/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+smile+and+move&utm_campaign=inspireyourpeople+post+etf

Inspire commitment, effort, and resilience. Cross The Line
http://www.inspireyourpeople.com/cross-the-line/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+cross+the+line&utm_campaign=inspireyourpeople+post+etf

Encourage more trust and accountability. Love Your People
http://www.inspireyourpeople.com/love-your-people/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+love+your+people&utm_campaign=inspireyourpeople+post+etf

No fluff. No parables. No matrixes. Just truth. Lead [simply]
http://www.inspireyourpeople.com/lead-simply/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+lead+simply&utm_campaign=inspireyourpeople+post+etf

-------------


Need a speaker for your next event?
Sam\'s thoughts and ideas have inspired thousands of people. He\'s the guy behind this stuff. Maybe he can help your organization.


Click below to learn about Sam or call (866) 952-4483
http://www.inspireyourpeople.com/speaking/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+learn+about+sam&utm_campaign=inspireyourpeople+post+etf


-------------


Upcoming meeting, project, or event?

Our fresh no-fluff messages, handouts, and themes can help you kick it off or support it by making it more interesting and meaningful.

------
Books
http://www.inspireyourpeople.com/books-and-booklets/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+books&utm_campaign=inspireyourpeople+post+etf

------
Videos
http://www.inspireyourpeople.com/videos/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+videos&utm_campaign=inspireyourpeople+post+etf

------
Meeting Packages
http://www.inspireyourpeople.com/meetings-discussions/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+meeting+packages&utm_campaign=inspireyourpeople+post+etf

------
PowerPoint(R) Slides
http://www.inspireyourpeople.com/presentations/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+powerpoint+slides&utm_campaign=inspireyourpeople+post+etf

------
Pocket Cards
http://www.inspireyourpeople.com/category/pocket-cards/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+pocket+cards&utm_campaign=inspireyourpeople+post+etf

------
Wristbands
http://www.inspireyourpeople.com/category/wristbands/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+wristbands&utm_campaign=inspireyourpeople+post+etf

------
Posters & Banners
http://www.inspireyourpeople.com/category/posters-and-prints/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+posters+and+banners&utm_campaign=inspireyourpeople+post+etf

------
Gifts & Gear
http://www.inspireyourpeople.com/gear/?utm_source=iyp-post-etf&utm_medium=email&utm_content=footer+-+gifts+and+gear&utm_campaign=inspireyourpeople+post+etf


-------------

Connect with us:
------

Facebook: https://www.facebook.com/nogomos

Twitter: https://twitter.com/inspiremypeople

Google+: https://plus.google.com/+SamParker212/posts

LinkedIn: http://www.linkedin.com/company/inspireyourpeople-com

Instagram: http://instagram.com/inspire_your_people

-------------
We\'re real people here and we\'d love to help you. Really.

(c) by InspireYourPeople.com | 115 South 15th Street, Suite 502, Richmond, VA 23219 USA
		', 'text/plain');
    /* END of message creation */
    /* Send the message */
    $sent = $mailer->send($message, $failures);
    /* If the email was sent display thank you message and capture email */
    if ($sent) {
        /* process_capture arguments: $captured_email, $captured_name, $capture_type, $capture_id */
        /* process_capture is in global functions file */
        process_capture($post_etf_email_from, $post_etf_from_name, 'post-etf-share');
        echo "<h2>Your email has been sent!</h2>";
    } else {
        die("Sorry but the email could not be sent. Please go back and try again!");
    }
}