下载地址:
http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html
...大约 4 分钟
下载地址:
http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html
https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html
思源笔记发布工具的安装步骤如下
从 Edge 商店下载插件或者在思源笔记集市下载挂件并添加到页面。
思源笔记发布工具 - Microsoft Edge Addons
使用下面的地址代替localhost
localhost.charlesproxy.com
Mail.mjs
import nodemailer from "nodemailer";
export default async function sendMail(to, title, msg) {
// 创建transporter
const transporter = nodemailer.createTransport({
host: "smtp.qq.com", // 邮箱的smtp地址
auth: {
user: "tangyouwei@qq.com", // 邮箱的smtp地址
pass: process.env.QQMAIL_SMTP_TOKEN // 邮箱授权码
}
});
// 配置邮件信息
const mailInfo = {
from: "tangyouwei@qq.com",
to: to,
subject: title, // Subject line
text: "仓库容量邮件通知", // plain text body
html: msg, // html body
};
// 发送邮件
const ret = await transporter.sendMail(mailInfo);
console.log("send mail finish to " + to);
return ret;
}