未在电子邮件模板中显示嵌入的youtube视频

时间:2018-08-28 06:22:31

标签: html html5 email youtube

是否可以将视频嵌入到电子邮件中,以使观看者可以在电子邮件本身中观看视频?

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt 
import matplotlib.dates as dates

df = pd.DataFrame(
    {'date': [20121231, 20130102, 20130105, 20130106, 20130107, 20130108],
    'price': [25, 163, 235, 36, 40, 82]
})

fig, ax = plt.subplots()

# Date plot with matplotlib
ax.plot_date(
    pd.to_datetime(df["date"], format="%Y%m%d"),
    df["price"],
    'v-'
)

# Days and months and the horizontal locators
ax.xaxis.set_minor_locator(dates.DayLocator())
ax.xaxis.set_minor_formatter(dates.DateFormatter('%d\n%a'))
ax.xaxis.set_major_locator(dates.MonthLocator())
ax.xaxis.set_major_formatter(dates.DateFormatter('\n\n\n%b\n%Y'))

ax.xaxis.grid(True, which="minor")
ax.yaxis.grid()
plt.tight_layout()
plt.show()

当我在电子邮件模板中使用上述iframe代码而不是视频时,它显示为空白。

3 个答案:

答案 0 :(得分:1)

不幸的是,答案是不可能的。您需要:

  • 提供指向视频源的链接(在您的情况下为https://www.youtube.com/embed/wbY_Szw8X7Q
  • 将此文件作为mp4附加到电子邮件本身。

答案 1 :(得分:0)

这取决于电子邮件提供商。每个提供商都支持不同的“ HTML电子邮件”。有些支持iframe,有些则不支持。我鼓励您向Google推荐哪些电子邮件提供商支持iframe,哪些不支持。

一些指针:

https://www.campaignmonitor.com/blog/email-marketing/2010/08/do-iframes-work-in-email/

https://www.simplycast.com/interactive-marketing-support/faqs/are-iframes-compatible-with-emails/

https://mailchimp.com/help/limitations-of-html-email/

https://www.experts-exchange.com/questions/21773969/IFRAME-in-a-mail-possible.html

等等...

答案 2 :(得分:0)

您不得嵌入视频,因为主要 email clients 不支持。但是,您可以显示带有链接的缩略图。一旦他们点击缩略图“播放按钮”,它就会重定向到链接 URL,并在浏览器中播放视频。