with Email and SecurityTrails?
Get a unique address where you can send emails to trigger your workflow.
Returns the current data about the given hostname. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com
Lists out specific historical information about the given hostname parameter. See the documentation
Returns the neighbors in any given IP level range and essentially allows you to explore closeby IP addresses.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
securitytrails: {
type: "app",
app: "securitytrails",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.securitytrails.com/v1/account/usage`,
headers: {
"APIKEY": `${this.securitytrails.$auth.api_key}`,
},
})
},
})