手机邮箱APP操作
收发电子邮件方式
邮箱可以在网络段登录,也可以在手机端登录。
大学网络服务
收发电子邮件有三种方式:
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()
绘图如下