使用数据流集发送电子邮件时出错

时间:2018-09-17 09:58:26

标签: email jython streamsets

我正在尝试使用StreamSet发送电子邮件。

为此,我使用目录作为源(文本文件中的收据列表),并且

用于处理的Jython评估程序和用于目标的垃圾箱(仅用于测试)。

当我运行管道时,运行没有任何错误。但是像这样将错误邮件发送到我的sender_email:

Your message wasn't delivered to com.streamsets.pipeline.stage.processor.scripting.ScriptRecord@3ea57368 because the domain 3ea57368 couldn't be found. Check for typos or unnecessary spaces and try again.

这是我的示例代码:

import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import logging
for record in records:
  try:
    msg = MIMEMultipart()
    msg['Subject'] = 'simple email in python'
    message = 'here is the email'
    msg.attach(MIMEText(message))
    mailserver = smtplib.SMTP('smtp.gmail.com',587)
    mailserver.ehlo()
    mailserver.starttls()
    mailserver.ehlo()
    mailserver.login('sateesh.karuturi9@gmail.com', 'password')
    mailserver.sendmail('sateesh.karuturi9@gmail.com',record,msg.as_string())
    output.write(record)
    mailserver.quit()
  except Exception as e:
    error.write(record, str(e))

这是我的错误: enter image description here

1 个答案:

答案 0 :(得分:2)

您之所以会看到此消息,是因为您将记录对象用作电子邮件地址-com.streamsets.pipeline.stage.processor.scripting.ScriptRecord@3ea57368是记录实例的字符串值。

如果您在目录来源中使用文本数据格式,则可以使用record.value['text']代替record

mailserver.sendmail('sateesh.karuturi9@gmail.com', record.value['text'], msg.as_string())

如果您使用其他数据格式(定界,JSON等),请使用预览来确定电子邮件地址位于哪个字段,并以相同的方式引用它。