GOCD - force email notification on failed build/test - go-cd

Is there a way to "force" the email notification setting on all users so that if they make a change that causes a build/test to fail in one of our pipelines?
I've read the documentation of the email notification that's available (link below) but is there a way to set this setting for all users (including future users) ?
link to GoCD email notification doc: https://docs.gocd.org/current/configuration/dev_notifications.html

Related

Can I put a stackdriver label metric in a email notification?

I have a metric on Stackdriver, which filter my application logs. When a log pass by this filter, I want to send this logs by email, to fast act on this.
I created a policy in Stackdriver, added the metric and the label(which contains the information that I need) to the policy condition and added the email to notification chanels. But I receive emails with defaults title and body, not distinguing by label's metric type.
Is there any way to modify this email, adding the content of the label in title email?
Ps: I Tried put variables in the Documentation by this link https://cloud.google.com/monitoring/alerts/doc-variables#doc-vars , but not working.
I do believe the email notification you a receiving have GCP’s network configuring the email header, and therefore, the subject line. You can’t alter the header information from GCP and pipe in custom information, change headers or add complex scripts, etc.
Any variables you set will only affect the body of the message and not the title.
In my test, the alert email title and subject line cannot be altered. There is a “view details” link where it will bring you to your Stackdriver alert. The pertinent information on the alert, including the variables you mentioned, is in the body only.
If you want a programmatic way to set your notifications, you can look into webhooks which can be configured in addition to your email alert. There is a Google Blog post about this.

Send email with custom from with amazon ses for several domains

How can I accomplish to send email in Amazon SES with a custom email from for several domains.
For example, I have an application that is used by several clients, and we have a module to send emails. When we send an email it goes with the "amazonses.com domain", but what I want to accomplish is a custom from email for each client, each one has a different domain.
The process for doing this is entirely specific to the current SES configuration steps so its better I provide a link thats regularly updated.
http://docs.aws.amazon.com/ses/latest/DeveloperGuide/mail-from-set.html
The short summary is that you can do this by choosing a FROM option for the emails you are sending from.
Programmatically Setting From
The link above points how how to use the API to programmatically change the FROM value. The link below is directly to the API call for setting from but to accomplish it you'd still need to follow the manual tutorial then replace its steps with equivalent API Calls.
http://docs.aws.amazon.com/ses/latest/APIReference/API_SetIdentityMailFromDomain.html

wso2 identity server dashboard forgot password/forgot username not working

I followed the below steps to enable password recovery using email notification.
https://docs.wso2.com/display/IS530/Password+Recovery
When I click forgot password button on dashboard login page, it asks for username and after that throw below error
Code : 20017
Message :Notification based password recovery is not enabled
I checked code in github and found property recovery.notification.password.enable is used but could not locate in any config file or any documentation. I am using WSO2IS 5.3.0.
How can i enable password recovery through end user dashboard if not mentioned in above mentioned steps.
Assume you are following the old and deprecated method. The steps for new APIs are available at the REST API Guide, It is also linked from the section "Password recovery using REST APIs" in the page you referred.
What you need to do is enable the Notification Based Password Recovery Enabled at the Resident Identity Provider configuration at management console and optionally set the expiry time for notifications.

Vtiger : How we have to manage Email thread on Lead Module?

We are sending email to customer from Lead module and email sent to customer successfully from Vtiger. also we have integrate Mail Manager
in Vtiger.
i can also see that email in Sent box.
now, When Customer will give reply for that mail which i have sent from Lead module that will automatically appear in Lead Module Email Tab. right now i am getting am reply in Mail Box but i need log email in Lead section with particular customer replay.
Please help me if anyone solution..
It's by default functionality which is provided by Vtiger CRM.
We have configure Mail Scanner and select folder which we have to scan.
also, we have add condition or rule for this what we have to do if we can get result while scanning.
Please check status for MailScanner in vtiger_cron_task table. it must be 1.
also we have to set vtigercron.php in cronjob.
you can also run vtigercron.php in console on server with below command
php vtigercron.php
After success full scan you can get below message
Please Let me know if you have any question.

How would I know that email has been sent or not via SendGrid in Django

I am working on django and sending emails to multiple users at once. in the given scenario it only tells me that if it has sent or not.
I want to display the report of same page that how many emails has sent to user successfully and how many not. more if i want to get details why email has failed to sent.
How would i do such things via SENDGRID APIs.
There are two options that I know of:
Connect to SendGrid Event Webhooks and start parsing events for every email to flag ones that were not sent. I believe you can configure SendGrid to only send certain events, so if you're interested in bounces you don't need to worry about handling all events.
The second option is to use a service like sendwithus which will connect to your SendGrid account on your behalf and track all bounces/opens/clicks for you and provide a simpler API/UI to view the data. I believe they do this via SendGrid's webhooks, so it's effectively the same solution but written for you.
Happy to elaborate on either, I've used both before.