CSS Bootstrap 3.0 in Scheduled Emails CF -


i trying create automatic email gets sent straight server. trying have bootstrap table appear in email. unable use plugins email creation if you're still using html, or doing wrong? have idea of how make bootstrap type table appear in email?

<cfmail to="#sendto#" from="#sendto#" subject="overdue item" type="html">  <html>  <link rel="stylesheet" type="text/css" href="js/vendor/datatables/bootstrap-3.3.5/css/bootstrap.min.css"/>  <body>   <h4>there overdue item in dealer work.</h4>  <p> <cfif overduetextarea.recordcount 0> there no overdue items. <cfelse> <table>     <thead>         <th><b>item id</b></th>         <th><b>date due</b></th>         <th><b>qty</b></th>     </thead>     <tbody> <cfloop query="overduetextarea">     <tr>         <td>#id#</td>         <td>#dateformat(date_due, 'mm/dd/yyyy')#</td>         <td>#item_count#</td>     </tr> </cfloop>     </tbody> </table> </cfif> </p>  </body> </html>  </cfmail> 


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -