properties.txt
来自「批量邮件发送器v01 - 2008-03-15 功能:对于某一路径下的文件」· 文本 代码 · 共 60 行
TXT
60 行
###########################################################
## 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 + =
减小字号Ctrl + -
显示快捷键?