如何在HTML脚本中集成HTML代码?

时间:2019-05-30 15:36:18

标签: python html python-3.x mime reddit

我有一个Python代码,该代码为Reddit的数据框架创建报告,并将其转换为简单的HTML,然后通过电子邮件发送出去。下面是代码:

#Clean all the Dataframes
test_clean = clean(test_test_df)
brand_clean = clean(brands_df)
competitor_clean = clean(competitors_df)
#Convert to HTML
test_html = test_clean.render()
brand_html = brand_clean.render()
competitor_html = competitor_clean.render()


# In[27]:


brand_clean


# # Email Integration

# #### Import Libraries for Email

# In[ ]:


import smtplib
from email.mime.multipart import MIMEMultipart 
from email.mime.text import MIMEText
from datetime import date


# #### Send Email If No Data is Available

# In[ ]:


if test_test_df.empty:
    today = str(date.today())

    fromaddr = "email@email.com"
    toaddr = "email@email.com"
    msg = MIMEMultipart()
    msg['From'] = fromaddr
    msg['To'] = toaddr
    msg['Subject'] = "Daily Reddit Monitor " + today


    message = "There are no relevant posts above the 100 score threshold today!"

    #email = df_complete.render()

    part1 = MIMEText(message, 'plain')


    msg.attach(part1)
    #msg.attach(part2)

    server = smtplib.SMTP('smtp.postmarkapp.com', 587)
    server.starttls()
    server.login('API-KEY”, “API-KEY')
    text = msg.as_string()
    server.sendmail(fromaddr, toaddr, text)
    server.quit()
    IpyExit 

收到的电子邮件格式非常简单。我希望该电子邮件看起来不错,因此使用HTML Tables内联CSS编写了带有标头图像徽标等内容的HTML代码,简而言之是新闻信函的HTML代码。现在,我希望该Python脚本在发送电子邮件时使用我的HTML代码,以便在收件箱中接收到的电子邮件看起来像一封新闻信。有什么建议或解决方案可以实现吗?

3 个答案:

答案 0 :(得分:8)

假设您在其他位置生成的HTML包含在字符串messageHTML中,那么您只需添加:

msg.attach(MIMEText(messageHTML, 'html'))

也保留纯文本,因此这两行看起来像

msg.attach(MIMEText(messagePlain, 'plain'))
msg.attach(MIMEText(messageHTML, 'html'))

要设置HTML,请创建变量messageHTML。 然后,您可以像这样创建表(假设您想要1行,两列data_1data_2):

messagePlain = data_1 + " " + data_2
messageHTML = '<table><tr><td>' + data_1 + '</td><td>' + data_2 + '</td></tr></table>'

msg.attach(MIMEText(messagePlain, 'plain'))
msg.attach(MIMEText(messageHTML, 'html'))

我建议从一个简单的表开始,也许甚至不从动态获取的数据开始,以确保HTML在发送时正确呈现,然后将HTML扩展到以后想要的内容和样式。

答案 1 :(得分:2)

您的示例代码不是很清楚,但是我认为您只是想将现有的HTML片段(来自Reddit的数据帧的报告)嵌入到可以很好地展示它的更大的HTML页面中。

为此,您可以简单地使用多行字符串中包含的模板,然后用其中的占位符{}替换值:

# Placeholder for current html report from dataframe (replace with your code)
df = pd.DataFrame([{'Title': 'Story 1 title', 'Description': 'Story 1 description'}])
redditHTML = df.to_html()

# HTML news letter template
template='''
<table width="689" border="0" cellspacing="0" cellpadding="1" align="center" bgcolor="#353A71">
    <tr>
        <td valign="middle" align="center">
            <table width="689" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF" align="center">
                <tr align="left"> 
                    <td valign="top" colspan="2"> 
                        <table width="100%" border="0" cellpadding="3" cellspacing="0" bgcolor="#FFFFFF">
                            <tr> 
                                <td width="0%">&nbsp;</td>
                                <td valign="top" width="100%">
                                    <center><h1 style="font-family:helvetica;">Top Reddit Posts</h1></center>

                                    {}

                                </td>
                                <td width="0%">&nbsp;</td>
                            </tr>
                            <tr>
                                <td width="0%">&nbsp;</td>
                                <td>&nbsp;</td>     
                                <td width="0%">&nbsp;</td>
                            </tr>
                            <tr> 
                                <td width="0%" bgcolor="#FFFFFF">&nbsp;</td>
                                <td align="center" class="profileCaptionWhiteBold" width="100%" valign="top" bgcolor="#FFFFFF"></td>
                                <td width="0%" bgcolor="#FFFFFF">&nbsp;</td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
        </td>
    </tr>
</table>
'''

completeHTML = template.format(redditHTML)

msg.attach(MIMEText(completeHTML, 'html'))

请注意,您的HTML代码示例缺少</td>来关闭包含“热门Reddit帖子”的部分,并且缺少结尾的</td> </tr> </table>以完成新闻信

答案 2 :(得分:-1)

您可以这样创建HTML格式的电子邮件(在Windows上):

    import win32com.client as win32   
    outlook = win32.Dispatch('outlook.application')
    mail = outlook.CreateItem(0)   
    mail.HtmlBody = html_string
    mail.To = ''
    mail.Subject = ''