SOCIAL MEDIA SHARE LINKS THAT WORK IN HTML EMAILS SENT BY PHPLIST - Nov 17th, 2022
|
The problem was that almost all of the social media share link generators use JavaScript, and JavaScript doesn't work at all with most email clients.
I found the original unmodified html code at https://www.niftybuttons.com/
And found the share link formats at: https://www.websiteplanet.com/webtools/sharelink/
I had to create the images, since I couldn’t find a matching set of share images on-line. You can download the set I created from http://thecmsbcookbook.com/downloads/share-buttons.zip
A good place to start to find Social Media icon images for making your own buttons is http://Icon8.com
The detail page is a detail page for a multi-record section. The active code for that page, which (finally) works on the greater majority of email clients when sent through PHPList is below.
The following code is in a file called _eblast_share.php which is inserted in the full detail page using <?php include ("_eblast_share.php"); ?>.
The title="" atribute shows the text in the atribute as a popup when a link is rolled over.
<div align="center"><span class="salon_text_font" style="color:#FFF">Please Share This Announcement With Others</span> <a href="https://www.facebook.com/sharer/sharer.php?u=http://www.southfloridaartsalons.com/eblastdetail-salon-annc.php?<?php echo($salon_e_blastsRecord['num']); ?>" target="_blank" rel="noopener noreferrer" title="Share On Facebook" style="text-decoration:none;border:0;width:92px;height:60px;padding:6px;margin:6px;"><img src=" http://www.southfloridaartsalons.com/images/facebook-share-button.png" width="92" height="60" /></a>
<a href="https://twitter.com/intent/tweet?url=http://www.southfloridaartsalons.com/eblastdetail-salon-annc.php?<?php echo($salon_e_blastsRecord['num']); ?>" target="_blank" rel="noopener noreferrer" title="Share On Twitter" style="text-decoration:none;border:0;width:92px;height:60px;padding:6px;margin:6px;"><img src=" http://www.southfloridaartsalons.com/images/twitter-share-button.png" width="92" height="60" /></a>
<a href="mailto:info@example.com?&subject=I'd Like to Share This Interesting South Florida Art Salon With You&body=http://www.southfloridaartsalons.com/eblastdetail-salon-annc.php?<?php echo($salon_e_blastsRecord['num']); ?>%0A" target="_blank" rel="noopener noreferrer" title="Share By Email" style="text-decoration:none;border:0;width:92px;height:60px;padding:6px;margin:6px;"><img src=" http://www.southfloridaartsalons.com/images/email-sharing-button.png" width="92" height="60" /></a>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=http://www.southfloridaartsalons.com/eblastdetail-salon-annc.php?<?php echo($salon_e_blastsRecord['num']); ?>" target="_blank" rel="noopener noreferrer" title="Share On Linkedin" style="text-decoration:none;border:0;width:92px;height:60px;padding:6px;margin:5px;"><img src=" http://www.southfloridaartsalons.com/images/linkedin-share-buttton.png" width="92" height="60" /></a>
<a href="https://pinterest.com/pin/create/button/?url=http://www.southfloridaartsalons.com/eblastdetail-salon-annc.php?<?php echo($salon_e_blastsRecord['num']); ?>" target="_blank" rel="noopener noreferrer" title="Share On Pinterest" style="text-decoration:none;border:0;width:92px;height:60px;padding:6px;margin:6px;"><img src=" http://www.southfloridaartsalons.com/images/pinterest-share-button.png" width="92" height="60" /></a> </div>
And the full detail page code: (Sorry, but there are a lot of if statements for various conditions that are unique to my application...) Take note of where there is inline css asnd where the css is between the <style type="text/css"> and the </style> tag.
<?php header('Content-type: text/html; charset=utf-8'); ?> <?php /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */ require_once "/home2/ngpymrmy/public_html/sofloartsalons/cmsAdmin/lib/viewer_functions.php";
list($salon_e_blastsRecords, $salon_e_blastsMetaData) = getRecords(array( 'tableName' => 'salon_e_blasts', 'where' => whereRecordNumberInUrl(1), 'limit' => '1', )); $salon_e_blastsRecord = @$salon_e_blastsRecords[0]; // get first record list($common_informationRecords, $common_informationMetaData) = getRecords(array( 'tableName' => 'common_information', 'allowSearch' => '0', 'limit' => '1', )); $common_informationRecord = @$common_informationRecords[0]; // get first record // load records list($google_font_namesRecords, $google_font_namesMetaData) = getRecords(array( 'tableName' => 'google_font_names', )); list($fontsRecords, $fontsMetaData) = getRecords(array( 'tableName' => 'fonts', 'limit' => '1',
)); $fontsRecord = @$fontsRecords[0]; // get first record // show error message if no matching record is found if (!$salon_e_blastsRecord) { header("HTTP/1.0 404 Not Found"); print "Record not found!"; exit; }
?> <?php $masterurl = $common_informationRecord['master_url']?> <!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> <link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700|Montserrat|Karla|Istok+Web|Oxygen' rel='stylesheet' type='text/css'> <meta name="robots" content="noindex,nofollow" /> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta name="color-scheme" content="light dark"> <meta name="supported-color-schemes" content="only"> <meta name="viewport" content="width=device-width, target-densitydpi=device-dpi, initial-scale=1"> <title>WELCOME TO SOUTH FLORIDA ART SALONS - E-BLASTS</title> <script src="<?php echo $masterurl ?>/Scripts/AC_RunActiveContent.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="<?php echo $masterurl ?>/css/fonts.css.php" /> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=<?php $output = ''; foreach ($google_font_namesRecords as $record) { $record['name'] = preg_replace("/[, ]/", "+", $record['name']); $output .= $record['name'] . "|"; } $output = rtrim($output,"|"); // remove trailing pipe print $output; ?>"> <style type="text/css"> body { background-color: #0e2071; background-image: url(http://southfloridaartsalons.com/<?php foreach ($common_informationRecord['all_page_backgound_image'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>); background-repeat: repeat; } @media (prefers-color-scheme: dark) { .darkmode {background-color: #0e2071; !important; } .darkmode p { color: #ffffff !important; } } @media (prefers-color-scheme: light) { .darkmode {background-color: #0e2071; !important; } .darkmode p { color: #ffffff !important; } } a:link {color: #ffffff; text-decoration:none;} a:visited {color: #ffffff; text-decoration:none;} a:active {color: #ffffff; } a:hover {color: #ffffff; text-decoration:underline;}
a { color: #<?php echo $common_informationRecord['link_color'] ?>; text-decoration: none; } a:hover { color: #<?php echo $common_informationRecord['hover_color'] ?>; text-decoration: underline; } a.special:link { color: #<?php echo $common_informationRecord['link_color'] ?>; text-decoration: none; } a.special:visited { color: #<?php echo $common_informationRecord['link_color'] ?>; text-decoration: none; } a.special:hover { color: #<?php echo $common_informationRecord['hover_color'] ?>; text-decoration: underline; } a.special:active { color: #<?php echo $common_informationRecord['link_color'] ?>; text-decoration: underline; } .copyright { color: #<?php echo $common_informationRecord['text_color'] ?>; } img { border: none; } .salon_masthead_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_masthead_font_size']): ?>font-size:<?php echo $fontsRecord['salon_masthead_font_size'] ?>em; <?php else: ?>font-size: 1.6em; <?php endif ?> <?php if ($fontsRecord['salon_masthead_font_color']): ?>color:#<?php echo $fontsRecord['salon_masthead_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_masthead_font_style']): ?>font-style:<?php echo $fontsRecord['salon_masthead_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .salon_navigation_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_navigation_font_size']): ?>font-size:<?php echo $fontsRecord['salon_navigation_font_size'] ?>em; <?php else: ?>font-size: 1.6em; <?php endif ?> <?php if ($fontsRecord['salon_navigation_font_color']): ?>color:#<?php echo $fontsRecord['salon_navigation_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_navigation_font_style']): ?>font-style:<?php echo $fontsRecord['salon_navigation_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .salon_heading_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_heading_font_size']): ?>font-size:<?php echo $fontsRecord['salon_heading_font_size'] ?>em; <?php else: ?>font-size: 1.5em; <?php endif ?> <?php if ($fontsRecord['salon_heading_font_color']): ?>color:#<?php echo $fontsRecord['salon_heading_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_heading_font_style']): ?>font-style:<?php echo $fontsRecord['salon_heading_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .salon_sub_heading_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_sub_heading_font_size']): ?>font-size:<?php echo $fontsRecord['salon_sub_heading_font_size'] ?>em; <?php else: ?>font-size: 1.1em; <?php endif ?> <?php if ($fontsRecord['salon_sub_heading_font_color']): ?>color:#<?php echo $fontsRecord['salon_sub_heading_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_sub_heading_font_style']): ?>font-style:<?php echo $fontsRecord['salon_sub_heading_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .salon_sub_heading_font_bold_underline { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_sub_heading_font_size']): ?>font-size:<?php echo $fontsRecord['salon_sub_heading_font_bold_underline_size'] ?>em; <?php else: ?>font-size: 1.1em; <?php endif ?> <?php if ($fontsRecord['salon_sub_heading_font_color']): ?>color:#<?php echo $fontsRecord['salon_sub_heading_font_bold_underline_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_sub_heading_font_style']): ?>font-style:<?php echo $fontsRecord['salon_sub_heading_font_bold_underline_style'] ?>; <?php else: ?>font-style: normal; text-decoration: underline; font-weight: bold; <?php endif ?> }
.salon_sub_heading_font_underline { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_sub_heading_font_size']): ?>font-size:<?php echo $fontsRecord['salon_sub_heading_font_underline_size'] ?>em; <?php else: ?>font-size: 1.1em; <?php endif ?> <?php if ($fontsRecord['salon_sub_heading_font_color']): ?>color:#<?php echo $fontsRecord['salon_sub_heading_font_underline_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_sub_heading_font_style']): ?>font-style:<?php echo $fontsRecord['salon_sub_heading_underline_font_style'] ?>; <?php else: ?>font-style: normal; text-decoration: underline; <?php endif ?> } .salon_text_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_text_font_size']): ?>font-size:<?php echo $fontsRecord['salon_text_font_size'] ?>em; <?php else: ?>font-size: .9em; <?php endif ?> <?php if ($fontsRecord['salon_text_font_color']): ?>color:#<?php echo $fontsRecord['salon_text_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_text_font_style']): ?>font-style:<?php echo $fontsRecord['salon_text_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .salon_small_text_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_small_text_font_size']): ?>font-size:<?php echo $fontsRecord['salon_small_text_font_size'] ?>em; <?php else: ?>font-size: .75em; <?php endif ?> <?php if ($fontsRecord['salon_small_text_font_color']): ?>color:#<?php echo $fontsRecord['salon_small_text_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_small_text_font_style']): ?>font-style:<?php echo $fontsRecord['salon_small_text_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .salon_tiny_text_font { font-family: "'Montserrat'", sans-serif; <?php if ($fontsRecord['salon_tiny_text_font_size']): ?>font-size:<?php echo $fontsRecord['salon_tiny_text_font_size'] ?>em; <?php else: ?>font-size: .7em; <?php endif ?> <?php if ($fontsRecord['salon_tiny_text_font_color']): ?>color:#<?php echo $fontsRecord['salon_tiny_text_font_color'] ?>; <?php else: ?>color:#000000; <?php endif ?> <?php if ($fontsRecord['salon_tiny_text_font_style']): ?>font-style:<?php echo $fontsRecord['salon_tiny_text_font_style'] ?>; <?php else: ?>font-style: normal; <?php endif ?> } .disclaimer { font-family: "'Montserrat'", sans-serif; text-decoration: none; border: none; color:#<?php if ($fontsRecord['font_color']): ?><?php echo $fontsRecord['font_color'] ?><?php else: ?>000000<?php endif ?>; } a.disclaimer:link { font-family: "'Montserrat'", sans-serif; text-decoration: none; border: none; color:#<?php if ($fontsRecord['font_color']): ?><?php echo $fontsRecord['font_color'] ?><?php else: ?>000000<?php endif ?>; } a.disclaimer:visited { font-family: "'Montserrat'", sans-serif; text-decoration: none; border: none; color:#<?php if ($fontsRecord['font_color']): ?><?php echo $fontsRecord['font_color'] ?><?php else: ?>000000<?php endif ?>; } a.disclaimer:hover { font-family: "'Montserrat'", sans-serif; text-decoration: underline; border: none; color:#<?php if ($fontsRecord['font_rollover_color']): ?><?php echo $fontsRecord['font_rollover_color'] ?><?php else: ?>000000<?php endif ?>; } a.disclaimer:active { font-family: "'Montserrat'", sans-serif; text-decoration: none; border: none; color:#<?php if ($fontsRecord['font_color']): ?><?php echo $fontsRecord['font_color'] ?><?php else: ?>000000<?php endif ?>; }
</style>
</head>
<body bgcolor: #0e2071; style="background-image: url(http://southfloridaartsalons.com/images/email-bg.png); background-repeat:repeat;" > <table height="1000" width="100%" style="background-image: url(http://southfloridaartsalons.com/images/email-bg.png); background-repeat:repeat;" > <tr> <td><table align="center" width="80%" border="0" cellpadding="10" > <tr> <td colspan="2" align="center"><?php if ($common_informationRecord['salon_eblast_page_masthead']): ?> <?php foreach ($common_informationRecord['salon_eblast_detail_masthead'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['urlPath'] ?>" alt="<?php $info1 = htmlspecialchars($upload['info1']); ?> <?php echo ucwords(strtolower($info1)); ?>" width="<?php echo $upload['width'] ?>" height="<?php echo $upload['height'] ?>" border="0" /> <?php endforeach ?> <?php endif; ?></td> </tr> <tr> <td colspan="2" align="center" valign="top"><table width="100%" border="0" cellpadding="0"> <?php if($salon_e_blastsRecord['virtual_salon'] == 0 || $salon_e_blastsRecord['virtual_salon'] == ""):?> <?php else:?> <tr> <td><span class="salon_heading_font" style="color:#FFD800">VIRTUAL ART SALONS ON ZOOM </span> <span class="salon_heading_font" style="color:#FFD800">First Tuesdays - October Through May - 7:00 - 9:00 PM</span> <span class="salon_heading_font" style="color:#FFD800">Look for us on</span> <a href="https://www.instagram.com/south_florida_art_salons/" target="_blank"><span class="salon_heading_font" style="text-decoration:underline; color:#FFD800">Instagram</span></a> <span class="salon_heading_font" style="color:#FFD800">and</span> <a href="https://www.facebook.com/SouthFloridaArtSalons/" target="_blank"><span class="salon_heading_font" style="text-decoration:underline; color:#FFD800">Facebook</span></a><span class="salon_heading_font" style="color:#FFD800">, on our</span> <a href="http://www.southfloridaartsalons.com" target="_blank"><span class="salon_heading_font" style="text-decoration:underline; color:#FFD800">New Website</span></a><span class="salon_heading_font" style="color:#FFD800">, and on </span><a href="https://www.youtube.com/channel/UCTezgwpkvDHjHQz82wwU2dg" target="_blank"><span class="salon_heading_font" style="text-decoration:underline; color:#FFD800">YouTube</span></a> <span class="salon_sub_heading_font" style="color:#FFD800">(** Check our</span> <a href="http://www.southfloridaartsalons.com/index.php" target="_blank"><span class="salon_sub_heading_font" style="text-decoration:underline; color:#FFD800">Salon schedule</span></a> <span class="salon_sub_heading_font" style="color:#FFD800"> for any changes **)</span></td> </tr> <?php endif ?> </table></td> </tr> <tr> <td colspan="2" width="28%" align="right" valign="top"><span class="salon_sub_heading_font" style="color:#FFD800"><font color="#FFD800">Having trouble reading this e-mail?</font></span> <a href="<?php echo $masterurl ?>/eblastdetail-salon-annc.php?<?php echo htmlencode($salon_e_blastsRecord['num']) ?>"><span class="salon_sub_heading_font" style="text-decoration:underline; color:#FFD800">CLICK/TAP HERE TO VIEW IN A BROWSER</span></a></td> </tr>" <tr> <td colspan="2" align="center" ><table width="80%" border="0" cellpadding="0"> <tr> <td colspan="3" align="center" valign="top"><div align="center"> <?php if ($salon_e_blastsRecord['special_announcement'] || $salon_e_blastsRecord['special_announcement_text'] ): ?> <span class="salon_heading_font" font color="#FFD800"> <?php $special_announcement = ($salon_e_blastsRecord['special_announcement']); ?> <b><?php echo strtoupper($special_announcement); ?></b></span> <?php if ($salon_e_blastsRecord['special_announcement_text']): ?> <span class="salon_sub_heading_font" style="color:#FFFFFF"><?php echo($salon_e_blastsRecord['special_announcement_text']); ?></span> <?php endif; ?> <?php endif; ?> <?php if ($salon_e_blastsRecord['presentation_title']): ?> <span class="salon_heading_font" style="color:#FFD800"><b><?php echo strtoupper(date("l, F jS, Y", strtotime($salon_e_blastsRecord['presentation_date']))) ?></b></span> <?php $presenter_s_name = ($salon_e_blastsRecord['presenter_s_name']); ?> <?php $presentation_title = ($salon_e_blastsRecord['presentation_title']); ?> <span class="salon_masthead_font" style="color:#FFF"><b><?php echo strtoupper($presentation_title); ?></b></span> <?php if($presenter_s_name):?> <span class="salon_sub_heading_font"style="color:#FFF">PRESENTED BY</span> <span class="salon_heading_font" style="color:#FFF"><?php echo strtoupper($presenter_s_name); ?></span> <?php endif ?> <?php endif; ?> </div></td> </tr> <tr> <?php if ($salon_e_blastsRecord['image_1']): ?> <td width="33%" align="center" valign="top"><a href="<?php echo $masterurl ?><?php foreach ($salon_e_blastsRecord['image_1'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>" > <?php foreach ($salon_e_blastsRecord['image_1'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['thumbUrlPath2'] ?>" width="<?php echo $upload['thumbWidth2'] ?>" height="<?php echo $upload['thumbHeight2'] ?>" alt="" /></a> <span class="salon_text_font" style="color:#FFF"><b> <?php if ($upload['info1']): ?> <?php echo $upload['info1']; ?> <?php endif; ?> <?php if ($upload['info2']): ?> <?php echo $upload['info2']; ?> <?php endif; ?> </b></span> <?php endforeach ?></td> <?php endif; ?> <?php if ($salon_e_blastsRecord['image_2']): ?> <td width="34%" align="center" valign="top"><a href="<?php echo $masterurl ?><?php foreach ($salon_e_blastsRecord['image_2'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>" > <?php foreach ($salon_e_blastsRecord['image_2'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['thumbUrlPath2'] ?>" width="<?php echo $upload['thumbWidth2'] ?>" height="<?php echo $upload['thumbHeight2'] ?>" alt="" /></a> <span class="salon_text_font" style="color:#FFF"><b> <?php if ($upload['info1']): ?> <?php echo $upload['info1']; ?> <?php endif; ?> <?php if ($upload['info2']): ?> <?php echo $upload['info2']; ?> <?php endif; ?> </b></span> <?php endforeach ?></td> <?php endif; ?> <?php if ($salon_e_blastsRecord['image_3']): ?> <td width="33%" align="center" valign="top"><a href="<?php echo $masterurl ?><?php foreach ($salon_e_blastsRecord['image_3'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>" > <?php foreach ($salon_e_blastsRecord['image_3'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['thumbUrlPath2'] ?>" width="<?php echo $upload['thumbWidth2'] ?>" height="<?php echo $upload['thumbHeight2'] ?>" alt="" /></a> <span class="salon_text_font" style="color:#FFF"><b> <?php if ($upload['info1']): ?> <?php echo $upload['info1']; ?> <?php endif; ?> <?php if ($upload['info2']): ?> <?php echo $upload['info2']; ?> <?php endif; ?> </b></span> <?php endforeach ?></td> <?php endif; ?> </tr> <?php if ($salon_e_blastsRecord['image_1']): ?> <tr> <td colspan="3" align="center" valign="top" class="salon_text_font">Click/Tap on any thumbnail for a larger image. </td> </tr> <?php endif; ?> <tr> <td colspan="3" align="left" valign="top"> <?php if ($salon_e_blastsRecord['announcement_lead']): ?> <span class="salon_text_font" style="color:#FFF"><?php echo $salon_e_blastsRecord['announcement_lead'] ?></span> <?php endif; ?> <?php if ($salon_e_blastsRecord['announcement_content']): ?> <span class="salon_text_font" style="color:#FFF"><?php echo $salon_e_blastsRecord['announcement_content'] ?></span> <?php endif; ?> <?php if ($salon_e_blastsRecord['presenter_s_web_site_or_social_media_link']): ?> <?php if(!preg_match("/^https:\/\//i", $salon_e_blastsRecord['presenter_s_web_site_or_social_media_link'] )):?> <?PHP if (!preg_match("/^http:\/\//i", $salon_e_blastsRecord['presenter_s_web_site_or_social_media_link'])) { $salon_e_blastsRecord['presenter_s_web_site_or_social_media_link'] = "http://" . $salon_e_blastsRecord['presenter_s_web_site_or_social_media_link']; } ?> <?PHP endif ?> <a class="special" target="_blank" href="<?php echo $salon_e_blastsRecord['presenter_s_web_site_or_social_media_link'] ?>"><span class="salon_text_font" style="color:#FFF"> <?php $presenter_s_web_site_or_social_media_link_text = ($salon_e_blastsRecord['presenter_s_web_site_or_social_media_link_text']); ?> <b style="text-decoration:underline;"><?php echo strtoupper($presenter_s_web_site_or_social_media_link_text); ?></b></span></a> <?php endif; ?> <?php if ($salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link']): ?> <?php if(!preg_match("/^https:\/\//i", $salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link'] )):?> <?PHP if (!preg_match("/^http:\/\//i", $salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link'])) { $salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link'] = "http://" . $salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link']; } ?> <?PHP endif ?> <a class="special" target="_blank" href="<?php echo $salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link'] ?>"><span class="salon_text_font" style="color:#FFF"> <?php $second_presenter_s_web_site_or_social_media_link_text = ($salon_e_blastsRecord['2nd_presenter_s_web_site_or_social_media_link_text']); ?> <b style="text-decoration:underline;"><?php echo strtoupper($second_presenter_s_web_site_or_social_media_link_text); ?></b></span></a> <?php endif; ?></td> </tr> <tr> <td colspan="3" align="center" valign="top" class="salon_text_font"><?php if($salon_e_blastsRecord['attendance_fee']): ?> There's a $<?php echo $salon_e_blastsRecord['attendance_fee'] ?> fee to attend. <?php elseif($salon_e_blastsRecord['donation_required']): ?> $<?php echo $salon_e_blastsRecord['donation_required'] ?> donation at the door. <?php elseif($salon_e_blastsRecord['donation_text']): ?> <?php echo $salon_e_blastsRecord['donation_text'] ?> <?php else: ?> <?php endif; ?></td> </tr> <?php if ($salon_e_blastsRecord['snacks_and_share_tag']): ?> <tr> <td colspan="3"><span class="salon_text_font" style="color:#FFF"><?php echo $salon_e_blastsRecord['snacks_and_share_tag'] ?></span> </td> </tr> <?php endif; ?> <!--<?php /* if ($salon_e_blastsRecord['full_schedule_url']): ?> <tr> <td colspan="3" align="center" valign="top" class="salon_text_font"><?php if(!preg_match("/^https:\/\//i", $salon_e_blastsRecord['full_schedule_url'] )):?> <?PHP if (!preg_match("/^http:\/\//i", $salon_e_blastsRecord['full_schedule_url'])) { $salon_e_blastsRecord['full_schedule_url'] = "http://" . $salon_e_blastsRecord['full_schedule_url']; } ?> <?PHP endif ?> <a class="special" target="_blank" href="<?php echo $salon_e_blastsRecord['full_schedule_url'] ?>"><span class="salon_text_font"> <?php $full_schedule_link_text = ($salon_e_blastsRecord['full_schedule_link_text']); ?> <b><?php echo strtoupper($full_schedule_link_text); ?></b></span></a> <?php if(!preg_match("/^https:\/\//i", $salon_e_blastsRecord['armory_schedule_url'] )):?> <?PHP if (!preg_match("/^http:\/\//i", $salon_e_blastsRecord['armory_schedule_url'])) { $salon_e_blastsRecord['armory_schedule_url'] = "http://" . $salon_e_blastsRecord['armory_schedule_url']; } ?> <?PHP endif ?> <a class="special" target="_blank" href="<?php echo $salon_e_blastsRecord['armory_schedule_url'] ?>"><span class="salon_text_font"> <?php $armory_schedule_link_text = ($salon_e_blastsRecord['armory_schedule_link_text']); ?> <b><?php echo strtoupper($armory_schedule_link_text); ?></b></span></a> </td> </tr>/ <?php endif; */?>--> <tr> <td colspan="3" align="center" valign="top" class="salon_text_font"><span class="salon_text_font" style="text-align:center"><b><span style="color:#FFF">A FULL SCHEDULE AND VIDEOS OF PAST SALON PRESENTATIONS ARE NOW AVAILABLE</span></b> </span><a class="special" target="_blank" href="<?php echo $masterurl ?>/index.php#A"><u><b><span class="salon_text_font" style="color:#FFF">ON OUR HOME PAGE</span></b></u></a></td> </tr> <tr> <?php if ($salon_e_blastsRecord['image_4']): ?> <td width="33%" align="center" valign="top"> <a href="<?php echo $masterurl ?><?php foreach ($salon_e_blastsRecord['image_4'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>" > <?php foreach ($salon_e_blastsRecord['image_4'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['thumbUrlPath2'] ?>" width="<?php echo $upload['thumbWidth2'] ?>" height="<?php echo $upload['thumbHeight2'] ?>" alt="" /></a> <span class="salon_text_font" style="color:#FFF"><b> <?php if ($upload['info1']): ?> <?php echo $upload['info1']; ?> <?php endif; ?> <?php if ($upload['info2']): ?> <?php echo $upload['info2']; ?> <?php endif; ?> </b></span> <?php endforeach ?></td> <?php endif; ?> <?php if ($salon_e_blastsRecord['image_5']): ?> <td width="34%" align="center" valign="top"> <a href="<?php echo $masterurl ?><?php foreach ($salon_e_blastsRecord['image_5'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>" > <?php foreach ($salon_e_blastsRecord['image_5'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['thumbUrlPath2'] ?>" width="<?php echo $upload['thumbWidth2'] ?>" height="<?php echo $upload['thumbHeight2'] ?>" alt="" /></a> <span class="salon_text_font" style="color:#FFF"><b> <?php if ($upload['info1']): ?> <?php echo $upload['info1']; ?> <?php endif; ?> <?php if ($upload['info2']): ?> <?php echo $upload['info2']; ?> <?php endif; ?> </b></span> <?php endforeach ?></td> <?php endif; ?> <?php if ($salon_e_blastsRecord['image_6']): ?> <td width="33%" align="center" valign="top"> <a href="<?php echo $masterurl ?><?php foreach ($salon_e_blastsRecord['image_6'] as $upload): ?><?php echo $upload['urlPath'] ?><?php endforeach ?>" > <?php foreach ($salon_e_blastsRecord['image_6'] as $upload): ?> <img src="<?php echo $masterurl ?><?php echo $upload['thumbUrlPath2'] ?>" width="<?php echo $upload['thumbWidth2'] ?>" height="<?php echo $upload['thumbHeight2'] ?>" alt="" /></a> <span class="salon_text_font" style="color:#FFF"><b> <?php if ($upload['info1']): ?> <?php echo $upload['info1']; ?> <?php endif; ?> <?php if ($upload['info2']): ?> <?php echo $upload['info2']; ?> <?php endif; ?> </b></span> <?php endforeach ?></td> <?php endif; ?> </tr> </table></td> </tr> <tr> <td colspan="3"><?php if ($salon_e_blastsRecord['announcement_art_salon_description']): ?> <span class="salon_text_font" style="color:#FFF"><?php echo $salon_e_blastsRecord['announcement_art_salon_description'] ?></span> <?php endif; ?></td> </tr> <tr> <td align="left" colspan="2" class="salon_text_font" style="color:#FFF"><?php if ($salon_e_blastsRecord['travel_directions']): ?> <b>TRAVEL DIRECTIONS:</b> <?php echo $salon_e_blastsRecord['travel_directions'] ?> <?php endif; ?></td> </tr> <?php include ("_eblast_share.php");?> <tr> <td align="left" colspan="2" class="salon_small_text_font" style="color:#FFF">You're receiving this eBlast because you are on the South Florida Art Salon's Distribution list. If you feel that you've received this eBlast in error, please <a target="_blank" href="http://southfloridaartsalons.com/unsubscribe.php"><span class="salon_text_font" style="text-decoration:underline; color:#FFF">CLICK/TAP HERE</span></a> to unsubscribe.</td> </tr> </table></td> </tr> </table> </body> </html>
|
The materials on this web site have been created for use with CMS Builder content management software. CMS Builder software is published and licensed for use by InteractiveTools.com. Please contact Interactive Tools for information on the downloading of the software or the purchasing of licenses.
Terms of Service
|