This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default { | |
| async email(message, env, ctx) { | |
| // 1. 配置 | |
| const FORWARD_TO = "your_real_email@gmail.com"; | |
| // 2. 基础信息 | |
| const subject = message.headers.get("subject") || "无主题"; | |
| const from = message.from; | |
| // 3. 获取并“清洗”数据 |