我知道您可以使用mailto:
添加主题行或CC / BCC其他人,但是有什么方法可以在电子邮件中添加一些正文或签名行?
例如:如果您想在电子邮件的末尾添加一行:
“从yoursite.com邮寄”
这样您就可以知道他们使用了您网站上的链接。不用表格或脚本就可以吗?
答案 0 :(得分:1)
虽然您的回答含糊不清,但是您可以尝试这样的操作,在顶部写一些内容,并在回车符(<%= form_for @product, url: category_products_path(@product) do |form| %>
<div class="field">
<%= form.label :name %>
<%= form.text_field :name %>
</div>
<div class="actions">
<%= form.submit %>
</div>
<% end %>
)后面加上签名Parameters: {"utf8"=>"✓", "authenticity_token"=>"xpmMl7tIDMTkyFMku7u5UxTvcicZnPwBgMq8xL5qj7aJHRo6iKN2BagkH745gbPap2PUsa2tanYGZru9ZQXimA==", "product"=>{"name"=>"math"}, "commit"=>"Create Product", "category_id"=>"1"}
Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.0ms)
ActiveRecord::RecordInvalid (Validation failed: Category must exist):
app/controllers/products_controller.rb:33:in `block in create'
app/controllers/products_controller.rb:32:in `create'
。 %0D
可用于确保浏览器正确显示空格。
Mailed from yoursite.com
您可以看看this w3 schools link或this discussion (as mentioned by Obsidian Age)。