web-dev-qa-db-ja.com

Python:smtplibモジュールを使用してメールを送信するときに「件名」が表示されない

Smtplibモジュールを使用して電子メールを正常に送信できます。ただし、エミアルが送信されるとき、送信される電子メールに件名は含まれません。

import smtplib

SERVER = <localhost>

FROM = <from-address>
TO = [<to-addres>]

SUBJECT = "Hello!"

message = "Test"

TEXT = "This message was sent with Python's smtplib."
server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()

送信する電子メールにSUBJECTも含めるために、「server.sendmail」をどのように記述する必要がありますか。

Server.sendmail(FROM、TO、message、SUBJECT)を使用すると、「smtplib.SMTPSenderRefused」に関するエラーが発生します

51
nsh

ヘッダーとして添付します。

message = 'Subject: {}\n\n{}'.format(SUBJECT, TEXT)

その後:

server = smtplib.SMTP(SERVER)
server.sendmail(FROM, TO, message)
server.quit()

また、標準のPython module email -電子メールの作成中に非常に役立ちます。

120

これを試して:

import smtplib
from email.mime.multipart import MIMEMultipart
msg = MIMEMultipart()
msg['From'] = 'sender_address'
msg['To'] = 'reciver_address'
msg['Subject'] = 'your_subject'
server = smtplib.SMTP('localhost')
server.sendmail('from_addr','to_addr',msg.as_string())
13
Hackaholic

おそらく次のようなコードに変更する必要があります。

from smtplib import SMTP as smtp
from email.mime.text import MIMEText as text

s = smtp(server)

s.login(<mail-user>, <mail-pass>)

m = text(message)

m['Subject'] = 'Hello!'
m['From'] = <from-address>
m['To'] = <to-address>

s.sendmail(<from-address>, <to-address>, m.as_string())

明らかに、<>変数は、実際の文字列値または有効な変数である必要があります。プレースホルダーとして入力しました。これは、件名付きのメッセージを送信するときに機能します。

6
g.d.d.c

メッセージに含める必要があると思います。

import smtplib

message = """From: From Person <[email protected]>
To: To Person <[email protected]>
MIME-Version: 1.0
Content-type: text/html
Subject: SMTP HTML e-mail test

This is an e-mail message to be sent in HTML format

<b>This is HTML message.</b>
<h1>This is headline.</h1>
"""

try:
   smtpObj = smtplib.SMTP('localhost')
   smtpObj.sendmail(sender, receivers, message)         
   print "Successfully sent email"
except SMTPException:
   print "Error: unable to send email"

コード: http://www.tutorialspoint.com/python/python_sending_email.htm

4
Martin

これは、GmailおよびPython 3.6+で新しい「EmailMessage」オブジェクトを使用して動作します:

import smtplib
from email.message import EmailMessage

msg = EmailMessage()
msg.set_content('This is my message')

msg['Subject'] = 'Subject'
msg['From'] = "[email protected]"
msg['To'] = "[email protected]"

# Send the message via our own SMTP server.
server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
server.login("[email protected]", "password")
server.send_message(msg)
server.quit()
2
emehex

Smtplibのドキュメントの下部にある注を参照してください。

In general, you will want to use the email package’s features to construct an email message, which you can then convert to a string and send via sendmail(); see email: Examples.

以下は、emailのドキュメントの例のセクションへのリンクです。このセクションには、件名のあるメッセージの作成が実際に示されています。 http://docs.python.org/library/email-examples.html#email-examples

Smtplibはサブジェクトの追加を直接サポートしておらず、msgがすでにサブジェクトなどでフォーマットされていることを期待しているようです。それがemailモジュールの出番です。

2
jeffcook2150
 import smtplib

 # creates SMTP session 

List item

 s = smtplib.SMTP('smtp.gmail.com', 587)

 # start TLS for security   
 s.starttls()

 # Authentication  
 s.login("login mail ID", "password")


 # message to be sent   
 SUBJECT = "Subject"   
 TEXT = "Message body"

 message = 'Subject: {}\n\n{}'.format(SUBJECT, TEXT)

 # sending the mail    
 s.sendmail("from", "to", message)

 # terminating the session    
 s.quit()
1
King_Avi