gpt4 book ai didi

ktor - 从 Ktor 应用程序发送电子邮件

转载 作者:行者123 更新时间:2023-12-04 14:08:23 31 4
gpt4 key购买 nike

我目前正在使用 Ktor Netty Engine 创建我的应用程序
当用户向我的服务器发送请求但没有发现任何功能时,我搜索了文档以处理发送电子邮件的任何功能。

post("/api/v1/auth") {
// TODO send email when request is sent!
}

最佳答案

在 Ktor apache-email-commons 中有一个可用的 java 依赖项

implementation("org.apache.commons:commons-email:1.5")
然后使用 SMTP 服务器,例如邮箱:
val email = SimpleEmail()
email.hostName = "smtp.googlemail.com"
email.setSmtpPort(465)
email.setAuthenticator(DefaultAuthenticator("email-account", "account-password"))
email.isSSLOnConnect = true
email.setFrom("sender-email-account")
email.subject = "email-subject"
email.setMsg("message-content")
email.addTo("target-email-address")
email.send()

关于ktor - 从 Ktor 应用程序发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66571524/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com