5

我有一个 Yagmail 脚本,我想在其中发送格式如下的电子邮件:

你好!下面是一张图片。

图片.png

再见!

但是,我的脚本只是将图像一直发送到电子邮件的底部。这是我的代码:

img = "img.PNG"
body = "Hello! Below is a picture." + img + "Goodbye!"

contents = [body, img]
yag.send("receiver@gmail.com", "Subject", contents)

您将如何使用可以在文本块之间放置图像的格式发送电子邮件?帮助被appriciated!

4

1 回答 1

1
contents = [yagmail.inline("/path/to/local/image")]
于 2019-04-30T02:28:37.327 回答