You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example was running couple days before and now it gives me an error:
error: Uncaught Error: failed to lookup address information: Name or service not known
at unwrapResponse ($deno$/ops/dispatch_json.ts:43:11)
at Object.sendAsync ($deno$/ops/dispatch_json.ts:98:10)
at async Object.connectTls ($deno$/tls.ts:20:15)
at async SmtpClient.connectTLS (https://deno.land/x/smtp/smtp.ts:36:18)
at async file:///home/pomatti/projects/bizi-infrastructure-code/deno-smtp/deno.ts:13:1
import{SmtpClient}from"https://deno.land/x/smtp/mod.ts";import{ConnectConfigWithAuthentication}from"https://raw.githubusercontent.com/manyuanrong/deno-smtp/master/config.ts";constclient=newSmtpClient();constparams=<ConnectConfigWithAuthentication>{hostname: "smtp.google.com",port: 465,username: "[email protected]",password: "pa$$word"}awaitclient.connectTLS(params);awaitclient.send({from: "[email protected]",// Your Email addressto: "[email protected]",// Email address of the destinationsubject: "Mail Title",content: "Mail Content,maybe HTML",});awaitclient.close();
This example was running couple days before and now it gives me an error:
The text was updated successfully, but these errors were encountered: