收發電子郵件方式
郵箱可以在網絡段登錄,也可以在手機端登錄。
大學網絡服務
收發電子郵件有三種方式:
1、Web方式:
1)登錄“網絡服務”(https://its.pku.edu.cn),點頁面頂端“郵箱”。
2)直接登錄:
????@pku.edu.cn用戶:(https://mail.pku.edu.cn)。
????@stu.pku.edu.cn用戶:(https://mail.stu.pku.edu.cn)。
????@alumni.pku.edu.cn用戶:(https://mail.alumni.pku.edu.cn)。
2、POP3方式:
@pku.edu.cn用戶:
????接收(POP3)郵件服務器:pop3.pku.edu.cn
????發送(SMTP)郵件服務器:smtp.pku.edu.cn
????在“發送郵件服務器”選項中選定“我的服務器要求身份驗證”。
SMTP SSL安全連接使用465端口,POP3 SSL安全連接使用995端口。
@stu.pku.edu.cn用戶:
????接收(POP3)郵件服務器:pop3hz.qiye.163.com
????發送(SMTP)郵件服務器:smtphz.qiye.163.com
SMTP SSL安全連接使用994端口,POP3 SSL安全連接使用995端口。
@alumni.pku.edu.cn用戶:
????接收(POP3)郵件服務器:pop3hz.qiye.163.com
????發送(SMTP)郵件服務器:smtphz.qiye.163.com
SMTP SSL安全連接使用994端口,POP3 SSL安全連接使用995端口。
3、IMAP方式:
@pku.edu.cn用戶:
????接收(IMAP)郵件服務器:imap.pku.edu.cn
????發送(SMTP)郵件服務器:smtp.pku.edu.cn
????在“發送郵件服務器”選項中選定“我的服務器要求身份驗證”。
SMTP SSL安全連接使用465端口,IMAP SSL安全連接使用993端口。
@stu.pku.edu.cn用戶:
????接收(IMAP)郵件服務器:imaphz.qiye.163.com
????發送(SMTP)郵件服務器:smtphz.qiye.163.com
SMTP SSL安全連接使用994端口,IMAP SSL安全連接使用993端口。
@alumni.pku.edu.cn用戶:
????接收(IMAP)郵件服務器:imaphz.qiye.163.com
????發送(SMTP)郵件服務器:smtphz.qiye.163.com
SMTP SSL安全連接使用994端口,IMAP SSL安全連接使用993端口。
【摘錄】
手機郵箱常見問題
問題:手機自帶郵箱提示登錄失敗或無法登錄。
原因:登錄策略變化,手機客戶端無法再使用原密碼登錄,申請郵箱客戶端授權碼,作為密碼,才能使用手機自帶郵箱登錄并正常使用。
如圖所示,在網頁端郵箱,點擊“安全設置”,選擇“客戶端專用密碼”,然后點擊生成專用密碼。
這時候,會生成一個長串的字母數字組合。將這個字母數字組合,輸入到手機客戶端的密碼框中。
這時候,就會發現手機端郵箱可以收發郵件了。
這樣,就不容易錯過重要郵件信息。
一日一畫
代碼如下:
import turtle
import timedef draw_mail_cycle():# 設置畫布screen = turtle.Screen()screen.title("郵件傳遞循環圖")screen.bgcolor("white")# 創建Turtle對象t = turtle.Turtle()t.speed(5)t.pensize(2)# 繪制循環箭頭t.penup()t.goto(0, -150)t.pendown()t.circle(150)# 繪制箭頭t.penup()t.goto(0, 0)t.setheading(90)t.forward(150)t.pendown()t.right(150)t.forward(20)t.backward(20)t.left(300)t.forward(20)# 繪制發送者t.penup()t.goto(-150, -50)t.pendown()t.write("發送者", align="center", font=("Arial", 12, "normal"))# 繪制郵件服務器t.penup()t.goto(0, 100)t.pendown()t.write("郵件服務器", align="center", font=("Arial", 12, "normal"))# 繪制接收者t.penup()t.goto(150, -50)t.pendown()t.write("接收者", align="center", font=("Arial", 12, "normal"))# 繪制郵件圖標def draw_mail(x, y):t.penup()t.goto(x, y)t.pendown()t.setheading(0)t.fillcolor("lightblue")t.begin_fill()t.forward(30)t.left(90)t.forward(20)t.left(90)t.forward(30)t.left(90)t.forward(20)t.end_fill()t.left(90)t.forward(15)t.right(135)t.forward(14)t.backward(14)t.left(270)t.forward(14)# 繪制三個郵件圖標表示傳遞過程draw_mail(-120, -20)draw_mail(0, 50)draw_mail(120, -20)# 添加說明文字t.penup()t.goto(-80, 0)t.pendown()t.write("發送", align="center", font=("Arial", 10, "normal"))t.penup()t.goto(80, 0)t.pendown()t.write("接收", align="center", font=("Arial", 10, "normal"))t.penup()t.goto(0, -180)t.pendown()t.write("郵件傳遞循環過程", align="center", font=("Arial", 14, "bold"))# 隱藏畫筆t.hideturtle()# 保持窗口打開screen.mainloop()# 調用函數繪制
draw_mail_cycle()
繪圖如下