Does anyone has a good example for this script? I copied the script from here and filled out some of the parameters. Not a coder. Hope someone can help me out
Â
Â
import smtplib
from email.MIMEMultipart import MIMEMultipart
from email.MIMEBase import MIMEBase
from email.MIMEText import MIMEText
from email.Utils import COMMASPACE, formatdate
from email import Encoders
import os
import fme
#Â FMEÂ variables.
status = fme.status
errorMsg = fme.failureMessage
logFile = fme.logFileName
Â
# E-mail message values.
subject = "FME Translation FAILURE"
to = "receiver@domain.com"
sender = "Your FME script <sender@domain.com>"
text = "FME translation failed with error message: " + errorMsg + "\r\n\r\nSee attached logfile for details."
Â
#Â Credentials.
AUTHREQUIREDÂ =Â 0
username = "smtp.user@domain.com"
password = "smtppassword"
smtpServer = "smtp.server.com"
Â
# Create and return a message with a logfile attachment.
def createMessage():
    # Set up the e-mail.
    message = MIMEMultipart()
    messaget"Subject"] = subject
    message "To"] = to
    message."From"] = sender
    messaget"Date"] = formatdate(localtime=True)
    message.attach(MIMEText(text))
    # Attach the logfile.
    attachment = MIMEBase("application", "octet-stream")
    attachment.set_payload(open(logFile, "rb").read())
    Encoders.encode_base64(attachment)
    attachment.add_header("Content-Disposition", 'attachment; filename="%s"' % os.path.basename(logFile))
    message.attach(attachment)
    return message
Â
# Send the passed in message.
def sendMessage(message):
    server = smtplib.SMTP(smtpServer)
    if AUTHREQUIRED:
        server.login(username, password)
    server.sendmail(sender, to, message.as_string())
    server.quit()
Â
# E-mails the translation results on failure.
def mailResults():
    if status == 0:
        message = createMessage()
        sendMessage(message)
Â
# Call function for FME to execute.
mailResults()
Â
It gives me the following error.
Â
Another issues after fixing the indentions, it tells me to install fme python packages. However install pip doesn't wrk either because it wants me to upgrade to version 3.8
Â
The goal of this is just to get notifications of some form in case FME workbench fails to run and get a log of it. I heard the emailer still fails if the workbench fails.
Â