<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
	xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs">
<xsl:template match="/">
  <html>
  <body>
  <h2>Twilio Log Out-Bound SMS</h2>
  <table border="1">
    <tr bgcolor="#9acd32">
      <th>DateSent</th>
      <th>To</th>
      <th>From</th>
      <th>Status</th>
      <th>Message</th>
    </tr>
    <xsl:for-each select="TwilioResponse/SMSMessages/SMSMessage[Direction='outbound-api']">
    <tr>
      <td><xsl:value-of select="DateSent"/></td> 
      <td><xsl:value-of select="To"/></td>
      <td><xsl:value-of select="From"/></td>
      <td><xsl:value-of select="Status"/></td>
      <td><xsl:value-of select="Body"/></td>
    </tr>
    </xsl:for-each>
  </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet> 
