1

我正在尝试使用这篇文章中详述的方法发送包含 pandas DataFrame 的 yagmail 电子邮件:HTML 格式 mimelib 中的 Python 电子邮件

但是,无论我尝试什么,yagmail 在打印 DataFrame 之前都会添加一长串换行符。

我的代码是(我只更改了安装的电子邮件地址):

#--- Addition to original post ---
import pandas as pd
df = pd.DataFrame([[900, 20.0], [500, 21.0]], columns =['Quantity', 'Price'])
#--- Addition to original post ---

import time
import yagmail
yag = yagmail.SMTP(username, password)

text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttps://www.python.org"
html = df.to_html()

yag.send('albalb@gmail.com', "This a reminder call " + time.strftime("%c"), [text,html])

生成的电子邮件正文是:

>Hi!
>How are you?
>Here is the link you wanted:
>https://www.python.org
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>   Quantity    Price
>0  900     20.0
>1  500     21.0

我还尝试添加一个 DOCTYPE 标签,编码为 utf-8,从 unicode 转换为字符串,但我没有成功。

这是一个错误,或者任何人都可以帮助我解决问题吗?

编辑#1:请注意 html 变量包含以下内容:

<table border="1" class="dataframe">
  <thead>
    <tr style="text-align: right;">
      <th></th>
      <th>Quantity</th>
      <th>Price</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th>0</th>
      <td>900</td>
      <td>20.0</td>
    </tr>
    <tr>
      <th>1</th>
      <td>500</td>
      <td>21.0</td>
    </tr>
  </tbody>
</table>

编辑#2:为了详细说明我尝试添加 html 和 doctype 标签,我尝试在 html 的开头和结尾添加以下内容。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
  <title>Title</title>
</head>
<body>
...
</body>
</html>

我在这里验证了这是有效的 html ,并且生成的电子邮件正文是相似的。

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

























    Quantity    Price
0   900     20.0
1   500     21.0
4

1 回答 1

0

评论太长:您可以做的一件事是在手动发送和删除空格之前创建输出变量。例如,在我过去构建的一个电子邮件程序中,我使用easygui并使用了textboxfor 用户来创建他们的消息。然后发送该消息。我的小例子:

import easygui as e
text_mes= e.textbox("Add to the Email", "Create Your Email", html)
yag.send('albalb@gmail.com', "This a reminder call " + time.strftime("%c"), [text,text_mes])

这将允许您手动删除行,直到您可以找到一种方法来创建一些代码来摆脱空格。

于 2017-03-24T14:17:26.790 回答