我正在尝试将渲染的图像(不是从.jpg
文件而是从URL链接)发送到电子邮件正文中。
下面的代码发送url,而不是渲染的图像。
@celery.task(queue='email')
def send_async_email(to, subject, sender, image, **kwargs):
msg = Message(subject=subject,
sender=sender,
recipients=to)
image = "https://i.scdn.co/image/26816116d2e836116ccf596a855160be5657d936"
msg.body = "testing"
msg.html = "<img src={}</img>".format(image)
mail.send(msg)
return {'Status': 'mail sent!'}
如何从链接发送渲染的图像?
答案 0 :(得分:0)
将任务指向您拥有的html
模板:
<img src="{{image}}" height="42" width="42" class="bobby img-circle">
然后将image
(网址)作为kwargs
msg.html = render_template('new_consumer.html',**kwargs)
mail.send(msg)
上面的方法应该起作用。