Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
qhy040404 committed Mar 25, 2022
1 parent b38e252 commit f620666
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions config.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# ���ļ�Ϊ�����ļ�����ȷ�ϴ��ļ������ڳ���Ŀ¼
20211011300 qhy040920 ��ϣ 301
001
[email protected] ANNTLVEZPDMMQVQA
4 changes: 2 additions & 2 deletions setup/auto.iss
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ Name: "chinesesimp"; MessagesFile: "compiler:Default.isl"
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}";

[Files]
Source: "J:\VSProjs\Library\exe\auto\dist\main\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "J:\VSProjs\Library\exe\auto\dist\main\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "J:\VSProjs\Library\exe\dist\main\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "J:\VSProjs\Library\exe\dist\main\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "J:\VSProjs\Library\src\config.conf"; DestDir: "{app}"; Flags: ignoreversion
Source: "J:\VSProjs\Library\driver\chromedriver.exe"; DestDir: "{app}/driver"; Flags: ignoreversion
Source: "J:\VSProjs\Library-reservation-configGenerator\x64\Release\ConfigGenerator.exe"; DestDir: "{app}"; Flags: ignoreversion
Expand Down
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def send_email(seat_id = None, successful = True):
message['From'] = sender
message['To'] = receiver

smtpObj = smtplib.SMTP_SSL()
smtpObj.connect(mail_host, 465)
smtpObj = smtplib.SMTP()
smtpObj.connect(host=mail_host, port=25)
smtpObj.login(mail_user, mail_pass)
smtpObj.sendmail(sender, receiver, message.as_string())
smtpObj.quit()
Expand Down

0 comments on commit f620666

Please sign in to comment.