ming 3 years ago
parent
commit
926256c1d9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      api/main.py

+ 2 - 1
api/main.py

@@ -428,6 +428,7 @@ def gen_video_queue(name_hash,name,text_content, image_urls,avatar,user_id):
             os.remove(tmp_video_dir+top1['name_hash']+'.mp4')
             vid_duration = VideoFileClip(video_dest+top1['name_hash']+'.mp4').duration
             left_time = first(db.query('SELECT * FROM users where id ="'+str(user_id)+'"'))['left_time']
+            email = first(db.query('SELECT * FROM users where id ="'+str(user_id)+'"'))['email']
             print('left_time is '+str(left_time))
             if left_time is None:
                 left_time = 5*60
@@ -435,7 +436,7 @@ def gen_video_queue(name_hash,name,text_content, image_urls,avatar,user_id):
                 msg = '您本月額度剩下'+str(left_time)+'秒,此部影片有'+str(vid_duration)+'秒, 若要繼續產生影片請至 http://192.168.1.106:8007/confirm_add_value?name_hash='+name_hash+' 加值'
                 print(msg)
                 msg =msg.encode(encoding='utf-8')
-                mailer.send(msg)
+                mailer.send(msg, )
             else:
                 left_time = left_time - vid_duration
                 db.query('UPDATE users SET left_time ='+str(left_time)+' WHERE id='+str(user_id)+';')