简体   繁体   English

使用变量作为 email 正文发送 email

[英]Sending an email using variable as email body

Using a simple webscraper I am able to return the contents of what I'm looking for into variables in my script content: content1 .使用一个简单的网络爬虫,我能够将我正在寻找的内容返回到我的脚本content: content1

For some reason, I can't get the contents to display in the email body.出于某种原因,我无法在 email 正文中显示内容。

I have tried using message.attach(MIMEText(mail_content, 'text')) message.attach(MIMEText(mail_content, 'html')) that made no difference.我尝试使用message.attach(MIMEText(mail_content, 'text')) message.attach(MIMEText(mail_content, 'html'))没有任何区别。 Also imported time module as I thought a delay in the script might help but it did not.还导入time模块,因为我认为脚本中的延迟可能会有所帮助,但事实并非如此。

from selenium import webdriver
import smtplib, ssl
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import time

DRIVER_PATH = 'C:/Users\James\Downloads\chromedriver_win32\chromedriver.exe'
driver = webdriver.Chrome(executable_path=DRIVER_PATH)
driver.implicitly_wait(5)

driver.get('https://www.skysports.com/football/news')


FootballHeadlines = driver.find_elements_by_class_name("news-list__headline-link")
for elem in FootballHeadlines:
    print(elem.text)
    print(elem.get_attribute("href"))

content  = (elem.text)
content1 = (elem.get_attribute("href"))


sender_address = 'some@email'
sender_password = '**********'
receiver_email = 'someother@email'


message = MIMEMultipart()
message['From'] = sender_address
message['To'] = sender_address
message['Subject'] = 'Latest on Football' 
session = smtplib.SMTP('smtp.gmail.com', 587) 
session.starttls()
session.login(sender_address, sender_password) 
mail_content = message.as_string(content)
message.attach(MIMEText(mail_content, 'html'))
session.sendmail(sender_address, sender_address, mail_content)

The problem wasn't in sending the email. For some reason, selenium wasn't able to get the text out of the elements it found.问题不在于发送 email。出于某种原因,selenium 无法从它找到的元素中获取文本。 I used beautiful soup instead.我用漂亮的汤代替。 The following code works.以下代码有效。

import bs4 as Bs
import smtplib, ssl
from selenium import webdriver
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart

DRIVER_PATH = 'D:\Webdriver\chromedriver.exe'
driver = webdriver.Chrome(executable_path=DRIVER_PATH)
driver.implicitly_wait(5)

driver.get('https://www.skysports.com/football/news')

page_src = Bs.BeautifulSoup(driver.page_source)
links = page_src.findAll("a", {"class" : "news-list__headline-link"})

content = ''
for link in links:
    content +='\n'+link.text
    
print(content)

sender_address = 'yatint5@gmail.com'
sender_password = 'ehdqxsdsuyuicupa'
receiver_email = sender_address


message = MIMEMultipart()
message['From'] = sender_address
message['To'] = sender_address
message['Subject'] = 'Latest on Football' 
message.attach(MIMEText(content, 'plain'))


session = smtplib.SMTP('smtp.gmail.com', 587) 
session.starttls()
session.login(sender_address, sender_password) 
mail_content = message.as_string(content)
print(mail_content)
message.attach(MIMEText(mail_content, 'html'))
session.sendmail(sender_address, sender_address, mail_content)

在此处输入图像描述

PS: I have revoked the app-password... PS:我已经撤销了app-password...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM