We are enabled outlook synchronization with salesforce, when we create an event in salesforce calendar Attendees are not receiving email template which ever sent by process builder (CC peoples and event creator receiving respective email template).
can someone please help me to resolve this issue, this is from long back I was checking.
Thanks in advance.
Related
Requirement: when a Salesforce (SF) User creates an Event and adds Attendees (Contacts) on that Event, each Attendee should receive an invitation email enabling them to add that Event to their respective MS-Outlook or Google Calendars.
Salesforce documentation states that only when creating the Event from SF Classic such invitation emails are being fired from SF's servers (I have tested that from Classic and it works indeed).
But, when the Event is created from Lightning Experience, SF servers will NOT fire these emails and... for that email to be sent, the user creating the Event should have access to the integration between SF and MS-Outlook through Einstein Activity Capture and it is actually MS-Outlook who will send the invitation email.
I have setup Einstein Activity Capture and integrated SF with MS-Outlook and eventually performed the test (creating an Event with Attendees from LEX UI) to verify if the invitation emails are being sent. But, no (invitation emails are NOT being sent).
I have also performed the same test with an integration between SF and Google through Einstein Activity Capture but have got the same result (no invitation emails are being sent)
Have you faced this issue before? Can you help?
Thank you very much.
I have my Alertmanager up and running and I can see all active alerts on alertmanager dashboard.
Now I want an email notification for alerts based on created rules.
I tried getting internal smtp details but seems like its a very hectic task in organizational env.
For other small tasks, we use Jenkins webhook to send an email notification to our org email address and it works.
I assume there is something I can do to integrate alertmanager with Jenkins and send alerts to my email address, but not completely sure how to do that.
I was wondering If someone can redirect me to a relevant post or a brief HowTo to achieve this model.
thanks in advance.
I have integrated Conga with Docusign in Salesforce. I ran the process of generating and sending the document to the user for signing. This has worked very well without using the background mode Conga parameter(&DS7=17) with docusign status updated in salesforce(with signed date and time) but, when I use background mode enabled, docusign status of that object(Contact or Opportunity) in salesforce doesn’t gets updated(no record gets added).I'm very much new to all these tools. Sorry, if i'm asking a silly question over here. Button url used:
https://composer.congamerge.com
?sessionId={!API.Session_ID}
&serverUrl={!API.Partner_Server_URL_290}
&id={!Contact.Id}
&TemplateId=a3X6F000000R4ue
&DocuSignVisible=1
&DocuSignR1ID={!Contact.Id}
&DocuSignR1Type=Signer
&DocuSignR1Role=Signer+1
&DocuSignEndpoint=demo
&DS7=17
Sign into DocuSign admin
Click connect
Click salesforce
Scroll to the connected objects section
Edit dsfs_DocuSign_status
Add a new field
If it is the Account object use the Account reference Id and map it to the Envelope External Source Id
Try that the rest of the settings are located there. It took me forever to figure it out too!
Here is my example of setting it up to the Order object
enter image description here
I want to create a wordpress custom plugin for saving three fields of data and also an image of the same from wp-admin area for every item. It should be able to display all these items in a page.
When I searched for a plugin I found Contact Form DB plugin which can be used as contact form 7 plugin extension for saving data send through it..
http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/
Can I use Contact Form DB plugin in my wordpress site for saving and displaying data without sending emails? It also sends email but I only want to store and display data.
Another problem:- I'm already using a contact form from contact form 7 plugin for sending email enquiries.. Will the changes for saving data in contact form 7 affect its working?
Please help me with any reference or solution as I'm new to wordpress and currently don't know about plugin development.
Any help will be greatly appreciated..
Thanks in advance.
You can use wpcf7_before_send_mail action hook to prevent form being sent to email..
(I have tested this with "Contact Form DB" plugin - it saves data before email is filtered)
To filter only specific Form IDs - use something like this:
function wpcf7_skip_email_sending($wpcf7_data)
{
if ( in_array($wpcf7_data->id(), array(2,3,7)) ) {
$wpcf7_data->skip_mail = true;
}
}
add_action("wpcf7_before_send_mail", "wpcf7_skip_email_sending");
(For older CF7 version you might have to change $wpcf7_data->id() to $wpcf7_data->id)
If you setup the Contact form 7 and put in a junk or noreply email address to send the message to on Contact form 7 it will still log the message being sent in the contact form DB
So in the shortcode template send message to junk#yourdomain.com and whenever a user submits it will try to send to that email and will still log the email as being sent. Personally I would actually create that email address so that your smtp doesn't get flooded with bounce back from smtp server.
To avoid sending emails, without even touching the files, the fastest way is to add in the additional settings tab
demo_mode: on
or
skip_mail: on
With Contact Form DB both works fine. The difference is that demo_mode won't work with Flamingo.
New to Salesforce and having some issues with the Approval Process setup. I have combed the web looking for solutions but nothing is working, uhg.
I have a multi set approval process in place and that part is working fine, what I need is a email template (Which I think I have but not a good one) that I can reply Yes, Y, Approve or No, N, Reject, etc... to approval/reject the case.
When the approver replies by email it just sends me an email to the case owner and not to salesforce, what am I doing wrong?
Sorry I don't think I should post any code here as it pertains to internal operations.
Thanks for any help on this,
--Phill
Ok well after much search on the web I did find the solution for replying by email, very simple.
Under:
Set up -> Create -> Workflow & Approvals -> Settings
You need to enable Email Approval Response option, this will generate an email that looks to be from the user who created it but when you hit reply you will see the user to whom you're replying to will change to the SF Approval Process Reply email.