📄 properties.txt
字号:
###########################################################
## Bulk Email Sender v01
## author: Jason Huang
## Date: March 14, 2008
## Email: huangjian03@126.com
###########################################################
###########################################################
## SMTP set up
###########################################################
# address of smtp server
SMTP_HOST = smtp.gmail.com
# username and password
USERNAME = your.username
PASSWORD = your.password
###########################################################
## MAIL set up
###########################################################
FROM = your.username@gmail.com
# multiple receiver supported
# must be separated using white space
TO = receiver1@gmail.com \
receiver2@hotmail.com \
receiver3@live.com
SUBJECT = 主题
CONTENT = 内容
# all files in this folder that are
# less than ATTATCHMENT_SIZE will be sent
SRC_FOLDER = D:\\目录\\支持中文
# patterns that will be used to match file name
# must be java type regular expression
# e.g.: for any type of files, use: .*\..*
# for .jpg files, use: .*\.(?i)jpg
# for .jpg or .doc files, use: (.*\.(?i)jpg|.*\.(?i)doc)
PATTERN = .*\..*
# if send files in subfolder(s)
RECURSIVE = true
# maxinum size of attachment in one single email in KB
ATTATCHMENT_SIZE = 10400000
# time interval between two emails in seconds
TIME_INTERVAL = 10
###########################################################
## other set up
###########################################################
# log
LOG = false
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -