1

メールサーバーに iRedEmail をインストールしました。現在、デフォルトの証明書があります。通常のメールクライアントを使用すると、メールサーバーの証明書を信頼するように求められ、メールサーバーからのメールの受信/送信が開始されます

しかし、電子メールを送信するための独自の Python プログラムを作成すると、電子メール クライアントのように同じことを行う方法がわかりません。現在、Pythonは「サーバー構成の問題」というエラーを出します

SMTPserver = 'smtp.xxxx.com
SMTPport = 587
sender =     'info@xxx.com'
destination = ['testgmailid@gmail.com']

USERNAME = "info@xxxx.com"
PASSWORD = "1234"

text_subtype = 'plain'

subject="Sent from Python"

import sys
import os
import re

from smtplib import SMTP       
from email.MIMEText import MIMEText

try:
    msg = MIMEText(content, text_subtype)
    msg['Subject']=       subject
    msg['From']   = sender 

    conn = SMTP(SMTPserver,SMTPport)
    conn.set_debuglevel(True)
    conn.ehlo()
    conn.starttls()
    conn.login(USERNAME, PASSWORD)
    try:
        conn.sendmail(sender, destination, msg.as_string())
    finally:
        conn.close()

except Exception, exc:
    sys.exit( "mail failed; %s" % str(exc) ) # give a error message
4

1 に答える 1