gyoumu01
@gyoumu01 (HIEP HOANGDUC)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

メール背景表示したい

Google JavaScript でメールの背景作成したい

大勢のお客様にGASでメール送る予定なんですが、メールの背景にも追加したいので、なかなかできませでした。

最初は普通のCSSで試していたけど、送信してから、Outlookで背景なくなってしました。

<style>
body {
  background-image: url('test.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
</style>

つぎはJQUERYで試したけどできませんでした。
テンプレートのコードです

 <script>
    $(document).ready(function() {
    var imageUrl = "test.png";
    $("body").css("background-image", "url(" + imageUrl + ")");
            });
  </script>

    <div  >

      <p> <?= client.company ?> </p>
      <p> <?= client.department ?> </p>
      <p> <?= client.derector ?> </p>
      <p> <?= client.name ?></p>
      <p>いつもお世話になります。</p>
      <p>本文</p>



皆さんより教えていただけたらありがたいです。
よろしくお願いいたします。

0

1Answer

画像をどこかのサーバにアップロードして、 url('https://example.com/test.gif') のように絶対 URL で参照してください。

0Like

Comments

  1. @gyoumu01

    Questioner

    お返事ありがとうございます。
    できませんでした

Your answer might help someone💌