changing email styles, removing bold for table values
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 1 Jun 2016 13:05:16 +0000 (09:05 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 1 Jun 2016 13:05:16 +0000 (09:05 -0400)
views/front/events/ownerEmail.html

index 37e1c35..62a5b5e 100644 (file)
@@ -5,37 +5,40 @@
     </head>
     <body>
       <h1 id="title"> Event Submission Notification</h1>
+      
+      {if $emailNotification}
+           <p> {$emailNotification} </p>
+      {/if}
+      
        <table cellspacing="0" cellpadding="0" width="500" style="background: lightgrey;border:1px solid #ccc;border-collapse:collapse;">
            <tr>
                <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">Event Name:</td>
-               <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">{$name}</td>
+               <td style="width:200px;padding:5px;border:1px solid #ccc;">{$name}</td>
            </tr>
            <tr>
                <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">Event Start Date: </td>
-               <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;"> {$startDate} </td>
+               <td style="width:200px;padding:5px;border:1px solid #ccc;"> {$startDate} </td>
            </tr>
            {if $endDate}
            <tr>
                    <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;" >Event End Date:</td>
-                   <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;" >{$endDate}</td>
+                   <td style="width:200px;padding:5px;border:1px solid #ccc;" >{$endDate}</td>
            </tr>
             {/if}
             {if $startTime}
                 <tr>
                      <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">Event Start Time:</td>
-                       <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">{$startTime}</td>
+                       <td style="width:200px;padding:5px;border:1px solid #ccc;">{$startTime}</td>
                 </tr>
             {/if}
             {if $endTime}
                 <tr>
                   <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">Event End Time:</td>
-                   <td style="font-weight:bold;width:200px;padding:5px;border:1px solid #ccc;">{$endTime}</td>
+                   <td style="width:200px;padding:5px;border:1px solid #ccc;">{$endTime}</td>
                  </tr>
             {/if}
         </table>
-           {if $emailNotification}
-                {$emailNotification}
-            {/if}
+           
         <div id="emailFooter">
             <p style="margin-bottom: 0px;">A new Event has been added to your Website from your &quot;Add Your Event&quot; page.</p>
             <p style="margin-top: 0px;">To approve it, please go to the <a style="color: rgb(5, 104, 179);" href="{$pendingEvents}"> events </a> page in your admin.</p>