Our store went live and the first order went through fine, the admin received the order email notification.
Then the next order the order was processed but the email that was sent to the admin was blank. The customer;s name and email were correct in the headers, but the body was blank.
How could it work one for one order then all the rest are empty??
The order is correct within the weblog, just the email is all of a sudden empty and continues to be on all orders we have received since the first one.
here is the code that is being used:
<strong>{exp:weblog:entries weblog="orders" entry_id="ORDER_ID" show_future_entries="yes"}
<table width="600" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="color: #3D3C3E; font-family: Arial, sans-serif; font-size: 13px; line-height: 18px; vertical-align: top;">
<p style="margin: 0px 0px 10px 0px;">
You have received an order:</p>
<p style="margin: 0px 0px 10px 0px;">
<strong>Order ID:</strong> {order_id}<br/>
<strong>Order Date:</strong> {entry_date format="%F %d, %Y"}</p>
<table cellspacing="0" cellpadding="0" style="margin-bottom: 10px; width: 50%;">
<tr>
<td style="color: #3D3C3E; font-family: Arial, sans-serif; font-size: 13px; line-height: 18px;">
<p><strong>Billing Address</strong><br/>
{order_billing_first_name} {order_billing_last_name}<br/>
{order_billing_address}<br/>
{if order_billing_address2}{order_billing_address2}<br/>{/if}
{order_billing_city}, {order_billing_state} {order_billing_zip}
{if order_billing_country}{order_billing_country}{/if}</p>
</td>
{if order_shipping_address}
<td style="color: #3D3C3E; font-family: Arial, sans-serif; font-size: 13px; line-height: 18px;">
<p><strong>Shipping Address</strong><br/>
{order_shipping_first_name} {order_shipping_last_name}<br/>
{order_shipping_address}<br/>
{if order_shipping_address2}{order_shipping_address2}<br/>{/if}
{order_shipping_city}, {order_shipping_state} {order_shipping_zip}
{if order_shipping_country}{order_shipping_country}{/if}</p>
</td>
{/if}
</tr>
</table>
<p style="margin: 0px 0px 10px 0px;">
<strong>Email Address:</strong> {order_customer_email}</p>
<p style="margin: 0px 0px 10px 0px;"><strong>Total number of purchased items:</strong> {order_items:total_results}</p>
<table cellspacing="0" cellpadding="0" style="color: #3D3C3E; font-family: Arial, sans-serif; font-size: 13px; line-height: 18px; margin-top: 30px; width: 100%;">
<thead>
<tr>
<th style="border-top: 1px solid #C1D72E; border-bottom: 1px solid #C1D72E;
color: #585845; font-weight: normal; padding: 5px; text-align: center; text-transform: uppercase; width: 10%;">Qty</th>
<th style="border-top: 1px solid #C1D72E; border-bottom: 1px solid #C1D72E;
color: #585845; font-weight: normal; padding: 5px; text-align: left; text-transform: uppercase; width: 75%;">Item</th>
<th style="border-top: 1px solid #C1D72E; border-bottom: 1px solid #C1D72E;
color: #585845; font-weight: normal; padding: 5px; text-align: left; text-transform: uppercase; width: 15%;">Price</th>
</tr>
</thead>
<tbody>
<tr class="{item:switch="odd|even"}">
<td style="border-bottom: 1px dotted #C1D72E; padding: 10px 5px 10px 5px; text-align: center; vertical-align: top;">{item:quantity}</td>
<td style="border-bottom: 1px dotted #C1D72E; padding: 10px 5px 10px 5px; vertical-align: top;">
<span style="color: #2795A2; display: block; font-size: 14px; font-weight: normal;">{item:title}</span>
{if "{item:product_size}" != ""}<span style="display: block; font-size: 11px; line-height: 16px;">Size: {item:product_size}</span>{/if}
</td>
<td style="border-bottom: 1px dotted #C1D72E; padding: 10px 5px 10px 5px; vertical-align: top;">{item:price}</td>
</tr>
{/order_items}
<tfoot>
<tr>
<td colspan="2" style="padding: 10px 5px 0px 5px; text-align: right; vertical-align: top;">Subtotal:</td>
<td style="padding: 10px 5px 0px 5px; text-align: left; vertical-align: top;">{order_subtotal}</td>
</tr>
<tr>
<td colspan="2" style="padding: 0px 5px 0px 5px; text-align: right; vertical-align: top;">Tax:</td>
<td style="padding: 0px 5px 0px 5px; text-align: left; vertical-align: top;">{order_tax}</td>
</tr>
<tr>
<td colspan="2" style="padding: 0px 5px 0px 5px; text-align: right; vertical-align: top;">Shipping & Handling:</td>
<td style="padding: 0px 5px 0px 5px; text-align: left; vertical-align: top;">{order_shipping}</td>
</tr>
{if "{order_discount}" != "$0.00"}
<tr>
<td colspan="2" style="color: #C00; padding: 0px 5px 0px 5px; text-align: right; vertical-align: top;">Less Discount:</td>
<td style="color: #C00; padding: 0px 5px 0px 5px; text-align: left; vertical-align: top;">({order_discount})</td>
</tr>
{/if}
<tr>
<td colspan="2" style="color: #2795A2; font-size: 16px; font-weight: bold; line-height: 22px; padding: 5px 5px 10px 5px; text-align: right; vertical-align: top;">Order Total:</td>
<td style="color: #2795A2; font-size: 16px; font-weight: bold; line-height: 22px; padding: 5px 5px 10px 5px; text-align: left; vertical-align: top;">{order_total}</td>
</tr>
</tfoot>
</table>
</td>
</tr>
</table>
{/exp:weblog:entries}</strong>
