为什么我在我的邮件中收到默认样式的邮件?在代码中我对其进行了一些样式设置,但为什么在 gmail 上我看到默认布局?我的代码是这样的:
!!!
%html
%head
%meta{:content => "text/html; charset=utf-8", "http-equiv" => "Content-Type"}
%title Покупка автозапчастей
:css
body, td { background-color:#cecece; color:#000000; font-size:14px; font-family:Verdana,Helvetica,Arial; }
.blue { background-color: blue; height:2px; color: white; }
.notice {margin: 10px auto; background-color: #fbb752; border: 1px solid #cecece; }
%body
.blue
%h3
Новый заказ
%b
Внимание, недавно на сайте сформирован новый заказ!
= @order.id
.notice
%table
%tr
%th
id клиента
%th
Улица
%th
Здание
%th
Общая сумма
%th
Статус
%th
Открыт
%tr
%td
= @order.user.id
= @order.user.email
%td
%b
= @order.street
%td
= @order.building
%td
%b
= @order.totalcost
%td
%b
= @order.orderstatus.name
%td
= @order.created_at
%br/
%table
%tr
%th
Артикул
%th
Цена
%th
Количество
- @order.line_items.each do |l|
%tr{ :class => cycle("zebra-stripe zebra-grey zebra1", "zebra-stripe zebra-grey zebra2")}
%td
= l.description
%td
= l.price
%td
= l.quantity
那么如何让我的邮件程序像我的代码一样在我的电子邮件服务 (gmail) 上发送良好的样式字母?