# sanyuan_task_mobile **Repository Path**: hqxluoyang/sanyuan_task_mobile ## Basic Information - **Project Name**: sanyuan_task_mobile - **Description**: 三源分享端跳过登陆处理 的 接口 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-12-09 - **Last Updated**: 2022-04-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # websport > A Vue.js project ## Build Setup ``` bash # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report # run unit tests npm run unit # run e2e tests npm run e2e # run all tests npm test ``` 1. zaocan key: foods For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). #!/usr/bin/python3 # !/usr/bin/env python3 # coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header sender = '583394859@qq.com' receiver = 'houqingxin@xender.com' subject = 'hello hi' smtpserver = 'smtp.qq.com' username = '583394859' password = 'sxsupvjnqskcbfcb' msg = MIMEText('hello world test', 'plain', 'utf-8') # 中文需参数‘utf-8’,单字节字符不需要 msg['Subject'] = Header(subject, 'utf-8') #smtp = smtplib.SMTP() #smtp.connect('smtp.163.com') smtp = smtplib.SMTP_SSL(smtpserver, 465) smtp.login(username, password) smtp.sendmail(sender, receiver, msg.as_string()) smtp.quit()