-2

HTML ニュースレターの作成方法

ページがあれば

<html>
  <body>
    <h1 style="color: red; background:yellow">hello world</h1>
  </body>
</html>

これをメールで送信するにはどうすればよいですか。メールに貼り付けると、すべてのタグが付いたテキストのみが表示されます。

他の会社のニュースレターのように、ニュースレターを送信することを意味します

4

2 に答える 2

0

HTMLでメールを送るということですか?それが正しければ、私はここにあなたが望むものがあることを願っています

<!DOCTYPE html>
<html>
<body>

<p>
This is an email link:
<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">
Send Mail</a>
</p>

<p>
<b>Note:</b> Spaces between words should be replaced by %20 to ensure that the browser will display the text properly.
</p>

</body>
</html>

または、HTML ページを電子メールで送信しますか。 gmail を使用している場合は、 https: //support.google.com/mail/answer/6584?hl=enで見つけることができます。

于 2013-08-25T13:26:15.687 に答える