Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Mailisk is an end-to-end email testing platform. It allows you to receive emails with code and automate email tests.
For a more step-by-step walkthrough see the NodeJS Guide.
npm install --save-dev mailisk
yarn add mailisk --dev
After installing the library import it and set the API Key
const { MailiskClient } = require("mailisk");
// create client
const mailisk = new MailiskClient({ apiKey: "YOUR_API_KEY" });
// send email (using virtual SMTP)
await client.sendVirtualEmail(namespace, {
from: "test@example.com",
to: `john@${namespace}.mailisk.net`,
subject: "Testing",
text: "This is a test.",
});
// receive email
const result = await client.searchInbox(namespace);
console.log(result);
This library wraps the REST API endpoints. Find out more in the API Reference.
The searchInbox
function takes a namespace and call parameters.
wait
flag. This means the call won't return until at least one email is received. Disabling this flag via wait: false
can cause it to return an empty response immediately.timeout
in the request options. By default it uses a timeout of 5 minutes.from_timestamp
is set to current timestamp - 5 seconds. This ensures that only new emails are returned. Without this, older emails would also be returned, potentially disrupting you if you were waiting for a specific email. This can be overriden by passing the from_timestamp
parameter (from_timestmap: 0
will disable filtering by email age).// timeout of 5 minutes
await mailisk.searchInbox(namespace);
// timeout of 1 minute
await mailisk.searchInbox(namespace, {}, { timeout: 1000 * 60 });
// returns immediately, even if the result would be empty
await mailisk.searchInbox(namespace, { wait: false });
A common use case is filtering the returned emails by the destination address, this is done using the to_addr_prefix
parameter.
const { data: emails } = await mailisk.searchInbox(namespace, {
to_addr_prefix: "john@mynamespace.mailisk.net",
});
For more parameter options see the endpoint reference.
Send an email using Virtual SMTP. This will fetch the SMTP settings for the selected namespace and send an email. These emails can only be sent to an address that ends in @{namespace}.mailisk.net
.
const namespace = "mynamespace";
await mailisk.sendVirtualEmail(namespace, {
from: "test@example.com",
to: `john@${namespace}.mailisk.net`,
subject: "This is a test",
text: "Testing",
});
This does not call an API endpoint but rather uses nodemailer to send an email using SMTP.
List all namespaces associated with the current API Key.
const namespacesResponse = await mailisk.listNamespaces();
// will be ['namespace1', 'namespace2']
const namespaces = namespacesResponse.map((nr) => nr.namespace);
FAQs
Mailisk library for NodeJS
The npm package mailisk receives a total of 6,572 weekly downloads. As such, mailisk popularity was classified as popular.
We found that mailisk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.