Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Provides a list of genres which may be used for filtering games via the MobyGames API. See the documentation
List all platforms available for filtering games via the MobyGames API. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The MobyGames API provides access to a vast database of video game information, including titles, platforms, release dates, and more. In Pipedream, you can leverage this API to create powerful integrations and automated workflows. You might fetch game data to curate personalized game recommendations, sync release information with your calendar, or compile game statistics for analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mobygames: {
type: "app",
app: "mobygames",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mobygames.com/v1/games`,
params: {
api_key: `${this.mobygames.$auth.api_key}`,
},
})
},
})