How to send email notification in ibmdatastage with custom body? - datastage

I tried to send custom body in data stage notification I don't know how to do that.
I want to send email notification with custom body message in IBM data stage.

Check out the Notfication stage on Sequence level (in a Sequence job).
Alternatively you could run an OS script sending out an email (sendmail) using a Execute Command stage

Related

How can we send email notification under single thread from jenkins?

I have project where every build sends notification mail.
Current: Recipients recieve notification as a new mail.
Requirement: Recipients recieve notification under single mail thread.
Is there any possible way to do this from jenkins?
Used many plugins from jenkins for email notifications, but no way I was able to complete the requirement.

Can I stop a SendGrid mail if it received a certain parameter?

I'm using a certain SendGrid template for several different projects and am trying to find a way to stop emails from going out in some conditions, through SendGrid.
For example, lets say I'm passing SendGrid some parameters like:
{id, name, amount, date}
I want to stop that email from going out when i'm passing a certain id.
I know that I can change the email template i'm sending with conditionals using handlebars:
From here
But Can I actually stop the mail if some condition happens?
In my case, every time I send the id = 5
You can control the body of the email using Handlebar templating, but by that point, you have already told SendGrid to send email with the data you provided. You cannot stop the email from being sent from within Handlebars.
If you're using code to tell SendGrid to send these emails, you could check in your code if the id equals 5, and if so, do not send an email.
If you're using Single Sends to send an email to SendGrid Contacts, you could to store this id field as a custom field, and create a segment or update your existing segment to filter out the contact with that id.

Does Palantir foundry provides a feature of sending email on successful completion of job?

We have written a pyspark code to create a report which we needed in a specific format. The requirement is to send email once the job gets executed successfully with the link of report. I understand how to send a notification on failures, but is it possible to send email on success. Thanks in advance!

How can I trigger runs for actual Emails which arived before enabling Logic App?

I have a Logical App which uses the when a new email arrives (V3) - trigger
the problem is that e-mails which are new and unread will not proccessed by the LogicApp if they arrived before I enabled the Logic App.
What could I do to trigger or retrigger runs for this emails.
or is that the problem the webhook trigger when a new email arrives (V3) nad I should use the polling Trigger (V2).
So all advices for retriggering on V3-trigger or change app to v2 or other proposals are very welcome.
According to some test and summarize from the comments, it seems we didn't understand the "when a new email arrives (V3)" trigger correctly. I do some more test for the trigger and find the feature with two situations:
1. If we create the trigger(or create the Office365 connection) first but disable the logic app, then receive an email, then enable the logic app. It can be triggered by the received email.
2. If receive the email first, then create the trigger(or create new Office365 connection in logic app). The logic app can't be triggered by the received email.
In a word, only the emails received after the creation time of Office365 connection, the logic app can be triggered.
===============================Update================================
If you think it is not guaranteed, you can do it by "Get emails" action to get all of the unread emails.

How to track status of email in sendgrid without using SMTP.

I want to send emails which contain different contents to same user and I need to track their status. Are there any way to do that without using SMTP.
Sounds like you want Unique Args. These are called custom_args in the v3 API mail send argument, but it's the same concept.
Once you activate the Event Webhook, all events will include the appropriate unique_args, so you can relate each specific message to each.
Also, whenever you send a message to SendGrid, the acceptange response includes a message_id, which will be in all those events.