简单地 动态函数传递
Posted 回=眸一笑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单地 动态函数传递相关的知识,希望对你有一定的参考价值。
#!/uer/bin/env python
#-*-coding:utf-8 -*-
import smtplib
from email.mime.text import MIMEText
from email.utils import formataddr
def mail(user):
ret=True
try:
msg=MIMEText("内容","plain","utf-8")
msg["From"]=formataddr(["╮(╯鎉轌鋈痕╰)╭",‘[email protected]‘])
msg["To"]=formataddr(["U=EV/ID",‘[email protected]‘])
#msg["To"]=formataddr(["(╯鎉轌鋈痕╰)╭","[email protected]"])
msg["Subject"]="主题"
server= smtplib.SMTP(‘smtp.qq.com,25‘)
server.login(‘[email protected]‘,‘密码‘)
server.sendmail(‘[email protected]‘,[user,], msg.as_string())
server.quit()
except Exception:
ret =False
return ret
ret =mail("[email protected]")
ret
if ret:
print("发送成功")
else:
print("发送失败")
在这使用user为形式参数,但是真正的实际参数为:ret =mail("[email protected]")中的内容。
通过这种动态参数的传递就可以实现邮件多发
以上是关于简单地 动态函数传递的主要内容,如果未能解决你的问题,请参考以下文章
动态地将selectInput值从UI传递到R中的Server代码