$fine_username可以获取用户名,那获取邮箱应该怎么实现
https://help.fanruan.com/finereport/doc-view-3151.html 去这张表查询
这个你只能用过sql函数,根据用户名,取查询了
=======
语句如下,其中finedb是你连接内助数据库的数据名
sql("finedb","select email from FINE_USER where username='"+$fine_username+"'",1,1)
填报成功发送邮件通知
没有直接获取邮箱的系统参数,只能从数据库中获取
https://help.fanruan.com/finereport10.0/doc-view-3151.html
sql("finedb","SELECT EMAIL FROM PUBLIC.FINE_USER where username='"+$fine_username+"'",1,1)