Unless I am completely working this wrong, that is not correct. That will only allow me to style CERTAIN parts of the email, not the details.
I have this code in my .sst file:
- Code: Select all
<tr>
<td style="font-family:Arial, Helvetica, sans-serif; font-size:12px; line-height:16px;" align="right">[-- SC_Cart quantity name SKU price total --]</td>
</tr>
That will generate this code in an email:
- Code: Select all
<tr>
<td align="right" style="font-family:Arial, Helvetica, sans-serif; font-size:14px; line-height:20px;">
<table class="cart">
<tr>
<th class="cart_quantity">Quantity</th>
<th class="cart_name">Name</th>
<th class="cart_sku">Item Number</th>
<th class="cart_price">Each</th>
<th class="cart_total">Total</th>
</tr>
<tr>
<td class="cart_quantity">1</td>
<td class="cart_name">Item name</td>
<td class="cart_sku">Item Number</td>
<td class="cart_price">Item Price</td>
<td class="cart_total">Total Prince</td>
</tr>
</table>
</td>
</tr>
Again, unless I am completely wrong here, there is no way to style those elements past the <td> (as I have done) in Gmail, since you cannot place styles in the heading.
The font family, size, etc will carry over, but I cannot style font-weight, alignments, and most important spacing (margin and/or padding).
Getting to the point that it looks *okay* in Yahoo Mail, Gmail, and Outlook has been a very, very long process.
Can you please confirm this is correct, and if it an issue ShopSite is aware of and taking seriously.
Thank you for taking the time to answer.
PS - Also, there needs to be a way to auto-generate an email. Again, since ShopSite 'builds-out' so much code, the only way to test an email is to place an order. I've had to place over 100 dummy orders trying to get this right. If there was a function in the back office to send a test email with dummy information, it would save a lot of hassle on my end.