Python傳送電子郵件

2021-08-09 22:45:48 字數 1008 閱讀 6714

源**:

sendemail.py

import smtplib

from email.mime.text import mimetext

msg = mimetext('the body of the email is here') # 這裡是你的信件中的內容

msg['from'] = '[email protected]'

# 這裡是傳送人的郵箱.

msg['to'] = '[email protected]'

# 這裡是接收信件人的郵箱

msg['subject'] = 'an email'

# 這裡是信件的標題

server = smtplib.smtp('smtp.163.com') # 163 smtp 伺服器位址

server.login(user='[email protected]', password='lt19970516')

# user 是傳送人的郵箱, password 是你的授權碼!授權碼!授權碼!(這不是我生日.)

server.send_message(msg=msg)

server.close()

借用smtp(簡單郵件傳輸協議)和163郵箱來傳送郵件.

使用方法:

python3 sendemail.py

這個程式我已經執行過了,沒有問題,163郵箱是我隨便註冊的,隨便任何人使用.

不過目前這個程式的接受人是我,所以你執行的話,希望更換一下接收人.

網易163免費郵箱相關伺服器資訊

伺服器名稱

伺服器位址

ssl協議du埠號

非ssl協議埠號

imap

imap.163.com

993143

smtp

smtp.163.com

465/994

25pop3

pop.163.com

995110

python 傳送電子郵件

from smtplib import smtp from email.header import header from email.mime.text import mimetext 傳送郵件 def send email 請自行修改下面的郵件傳送者和接收者 sender abcdefg 126...

傳送電子郵件

傳送電子郵件 param emaillist 的物件 param data 傳送的資料 throws ioexception throws addres ception private void sendemail listemaillist,listdata throws ioexception,...

python電子郵件 Python傳送電子郵件

smtp是傳送郵件的協議,python內建對smtp的支援 smtplib模組和email模組 可以傳送純文字郵件 html郵件以及帶附件的郵件 python的smtplib提供了一種很方便的途徑傳遞電子郵件,對smtp進行了簡單的封裝 傳送純文字郵件 匯入smtplib模組 from smtpli...