Email
email campaigns
bulk emails
communication options
Studio_Creatio_enterprise_edition
7.17

Hello...I'm curently setting up an Email Profile for Bulk Email & Campaigns.

 

If my understanding is GOOD :

 

CREATIO let us send a message though Bulk Email + Campaigns to :

1) a Contact PRIMARY email

2) an ACCOUNT connected to a CONTACT that has a PRIMARY Email

3) a LEAD connected to a CONTACT that has a PRIMARY Email

 

OUR CHALLENGE :

We have CONTACTS that have multiple Emails and also ACCOUNTS that have multiples Emails.

 

I want to categorize each Email with a TYPE of message that can be sent to them.

 

example 1 :  ACCOUNT emails

info@abc.com             promo

admin@abc.com         order confirmation and events invitation

Invoice@abc.com        invoices

 

example 2 :  CONTACT emails

John.Smith@abc.com      promo

J.smith@abc.com              invoives

John.smith@gmail.com    personal (do not use for mass-mailing.  Only Sales Rep)

 

 

BUSINESS REQUIREMENT :

- Each EMAIL from a CONTACT or ACCOUNT can be used.

- If a contact unsubscribe from an email...than the other EMails are not affected.

- Need to track ALL emails (bounced, Opens, clicks,...)

 

Any suggestions ???

 

You may reach me directly.

 

Francois Breault

francois.breault@vetoquinol.com

(514) 214-8183

 

Like 0

Like

6 comments

Dear Francois,

 

Unfortunately, it is not possible to use each email from contact or account as only 1 (primary) can be used upon Bulk Emails or Campaigns.

 

Best Regards,

Ivanna Yatsura.

From the Out Of The Box...That's what I thought.

 

Let's see if the following works : 



- If I put all my Emails in the LEAD section.

- If I CREATE a UNIQUE contact record for each LEAD (EX:    first name = Communication Profile   and  the lastname = of John Smith)

- If I CREATE 2 custom lookup fields (Ref-Contact and Ref-Account) in the LEAD Section

- For each LEAD...I assign the proper Contact/Account using the custom lookup fields

- If I CREATE a  custom lookup field in the LEAD object to categorize what I can send to that Email  (Promo, Invoice, Order confirmation, Newsletter,...)

 

I should now be able to create a Bulk email or Campaign,  assigning any LEADS into the audience and still have access to the CONTACT or ACCOUNT data associated to the LEAD.

 

The TRACKING of all Emails should be visible in the LEAD Section.

 

Is there anything wrong in this logic ?

 

Ivanna Yatsura,

Can you validate my proposal ?

Francois Breault,

You are thinking in the right direction. What you have described should work just fine.

As for the "Tracking of all emails visible in Lead Section". Could you please elaborate a bit on this question?

Max,

 I'd like to display when the contact has RECEIVED the message, OPENED it. CLICKED in a link, REGISTERED from a webform, DOWNLOADED a file.

 

Francois Breault,

It's possible to do this through development. 

Here is a link to the Academy article about setting up tracking of lead sources that you might find useful.

Show all comments
case
Email
Service_Creatio_enterprise_edition

Need to change the subject lines for emails sent from a Case. Either:

- allow the agent to enter their own subject or

- allow us to restructure the elements of the subject line

 

Like 0

Like

3 comments

Hello Rick!

 

In order to change the subject lines for emails sent from a Case it is necessary to replace EmailMessagePublisherPage model in Configuration and in setListenerEmailData method to set the value of "IsTitleEnabled" to true. Please check the attached image with the solution to this problem.

 

Best Regards,

Tetiana Bakai

Thank you

 

Tetiana Bakai,

 

That worked for being able to actually edit the subject line, but when the email gets sent, any changes made to the subject line are discarded and the default subject line is used regardless.  Do you know how to change that?

 

Thanks!

Chris

Show all comments
support
Technical support
case
dynamic case management
Email
emails
cases
SECTION CASES

Hi Team,



I have followed a below setup to register a case automatically  from emails.

https://academy.creatio.com/docs/user/service_tools/service_cases/case_settings/set_up_case_registration_from_emails_from_mailbox_alias



I configured a mail box and when a mail received, a new case is Created.



I see that this business process runs to send a notification when a case is created.

BP - Incoming email registration process 



when a case stage is changed, I noticed that this business process triggers 

BP - Send email to contact on case status change, this is linked to another Sub-Process BP - Send email to case contact.



Here, I would like to send the email only to the contact from whom a mail is received to Creatio CRM instance. All the CC has to be removed?



How to achieve this?





Scenario : MAIL Notification is sent only to the sender not to the people in CC



STEP 1 : support@MyCreatio.com ---> configured in Creatio CRM Instance

 

STEP 2 : A user (From : TestUser@Company.com , CC : TestUser1@Company.com, TestUser2@Company.com) sends a mail to support@MyCreatio.com asking for a clarification/request.



STEP 3 : A new case is created and a notification is sent to the user who created a request (i.e., From : Support@MyCreatio.com, TO :  TestUser@Company.com, CC : TestUser1@Company.com, TestUser2@Company.com).



Here, I want to remove the CC and the notification is sent only to  TestUser@Company.com from whom the request is created.





Please find the attached image below for reference,

 

 

 

Best Regards,

Bhoobalan P.

 

Like 0

Like

4 comments

Hello Bhoonalan, 



Please enable Features CasesOnlyRespondToSender  and SendOnlyToContactEmail .  For MSSQL, use following script:



DECLARE @featureCode varchar(max) = 'Feature code',

 @featureId uniqueidentifier;

set @featureId = (select top 1 Id from Feature where Code = @featureCode);

IF @featureId is null

BEGIN

 insert into Feature

  (Name, Code)

 values

  (@featureCode, @featureCode);

 set @featureId = (select top 1 Id from Feature where Code = @featureCode);

END;

delete from AdminUnitFeatureState where FeatureId = @featureId;

insert into AdminUnitFeatureState

 (SysAdminUnitId, FeatureState, FeatureId)

values

 ('A29A3BA5-4B0D-DE11-9A51-005056C00008', 1, @featureId);



This script enables the feature , or creates the feature if it's not created on your instance 



Also, please enable sysSetting AutoNotifyOnlyContact.



Best Regards,

Yurii.

Yurii Sokil,

Thanks for the response!



I ran this query but I couldn't find the following two codes casesOnlyRespondToSender  and SendOnlyToContactEmail  in Feature table & AdminUnitFeatureState.



Kindly help me with where can I find the mentioned field values?

1.CasesOnlyRespondToSender  

2.SendOnlyToContactEmail  

Dear Bhoobalan, 



If you cannot find this codes, it means that the record for that feature doesn't exist in the Feature Table. 

Using the query i provided you can update the feature if it exists, or create it if it doesn't. So in your case the query will look like this(i'll only show the relevant piece of code, please use the full query mentioned above) : 



DECLARE @featureCode varchar(max) = 'casesOnlyRespondToSender',

.........

DECLARE @featureCode varchar(max) = 'SendOnlyToContactEmail ',

 ...........



Best regards,

Yurii.

 



​​​​​​​

Yurii Sokil,

Great, Appreciate your assistance!



This helps and also can you please help me with reverting the changes to the previous or existing ones.

Show all comments
emailstats
Email
email campaigns
campaign_monitor
Marketing_Creatio
7.15

Hi Team,

We are trying to analyze the opens/clicks dynamics during the day to determine the best time to send emails

 

But the interval is set to 2 hours [oob feature] and as attached in the screenshot we get to view the analyse only 3 days of data whereas if you look at the email open stats and click stats the count doesn’t match with the open/click chart as it has only 3 days of data to be shown.

 

Create instance being used is 7.15.0

 

Question : How do we extend the interval from two hours to a 24 hours or can we expand the existing chart only to the fullest/scrollable from the campaign start to end date/ start to todays's date.

 

 

Regards,

Mayan

File attachments
Like 0

Like

1 comments

Hi Mayan,

 

You can either change the value for the BulkEmailHourlyStatisticPeriod system setting (this is a system setting code), or you can create a filter in the Contacts section and specify time periods you need. The object to call in the filter is "Response in Email (by column Contact)" and the filter is something like on the screenshot below:

Best regards,

Oscar

Show all comments
filter
account
Email
history
Sales_Creatio
7.17

Hi all !

On the account section, i would like to filter accounts which have not received any email

I tryed to used the "History on account section" with the Object email but it looks like it did not work because in my example below the account is having an email in its timeline tab.

On the account i ve an email record in the history tab:

Does anybody knows how can i retrieve accounts with no emails history ?

Thank you

nicolas

Like 0

Like

1 comments
Best reply

Hello,

 

It is necessary to use this filter to use this filter:

 

Regards,

Dean

Hello,

 

It is necessary to use this filter to use this filter:

 

Regards,

Dean

Show all comments
email templates
Email
Sales_Creatio
7.14

Hello,

 

In our Creatio CRM we have a number of email templates that display numbers related to currencies and other values. Our client has requested a specific format that requires to have certain thousand separator (10,000,000.00).

 

We haven't found any way to specify format in the email macros. Does anyone know of a way to achieve this in an email template?

 

Thanks, regards.

Like 0

Like

5 comments

Hello,

 

The macros take the actual value in the database. If you have 10,000,000.00 on UI, in the db you will have 10000000.00. That's why macro value has no separators. Currently it is not possible to add comma separators in macros. We have active task in our backlog to implement this logic for macros as well, but it will be available in future application versions.

 

Regards,

Dean

dean parrett,

Has there been a release to fix this issue?

 

As far as I can see it has not changed.

Kieron Moran,

We have checked this and this functionality has not been implemented yet. 

Mira Dmitruk,

Do you know when it will be implemented? The original question was asked 2.5 years ago.

Kieron Moran,

Hello,

 

Unfortunately, we do not have an exact ETA at the moment.

Once it is implemented, it will be mentioned in the Release Notes at https://academy.creatio.com/docs/release

 

Best regards,

Yuliya

Show all comments

We have been struggling with this for a while. Basically: we want to be able to simulate the Outlook functionality of collapsing a conversation thread.



We have the Hierarchical List Views add-in from the Marketplace and we have looked for the right method of storing a "parent" value on the Activity (Email) record to group by without any luck.

 

Looking at Email message (EmailMessageData) we had hopes that the ParentId or ConversationId were the right places to start but ran into various issues with execution.

 

Any recommendations on what field value to capture to make this work, and any thoughts on the necessary maintenance to make sure we are updating these as new Emails come into the system would be greatly appreciated!

 

(Note: a low-code solution to this issue would be ideal as none of the members of our team are full developers.)

Like 0

Like

2 comments
Best reply

Gary,

 

This won't be possible without coding and I am not sure how to do it using the code. There is something very far similar to the functionality you need in the "Related emails" detail on the EmailPageV2 (the email page):

This detail uses the logic of filtering records by the ConversationId column value and returns only emails from one email thread where you can sort records by their creation date to get the history of related emails. Please use this detail instead of the hierarchical view detail.

 

Please also note that our core R&D department has a suggestion registered on their side to make it possible to sort emails between folders inside the Creatio application and it is planned to develop this logic in one of the future releases. The problem is now prioritized because of this community post. Thank you for helping us in making the app better!

 

Best regards.

Oscar

Gary,

 

This won't be possible without coding and I am not sure how to do it using the code. There is something very far similar to the functionality you need in the "Related emails" detail on the EmailPageV2 (the email page):

This detail uses the logic of filtering records by the ConversationId column value and returns only emails from one email thread where you can sort records by their creation date to get the history of related emails. Please use this detail instead of the hierarchical view detail.

 

Please also note that our core R&D department has a suggestion registered on their side to make it possible to sort emails between folders inside the Creatio application and it is planned to develop this logic in one of the future releases. The problem is now prioritized because of this community post. Thank you for helping us in making the app better!

 

Best regards.

Oscar

Noted - thank you so much for your help!

Show all comments

There is a Send Email element in the business process sending emails automatically that takes "To:" parameter from some string field.

The string field can contain multiple addresses separated by "; ".

What is the easiest method to send emails to all the listed addresses?

Like 0

Like

2 comments

Hello Yuriy,



You can add multiple emails by clicking the btn_button_preconfigured_new.png button next to the 'To' field in the [Send email] element.  You can add emails from process parameters, lookups, system settings. Please check a screenshot below to see how the selected multiple emails look like in the process element. 



 

Besides, you can find more information about [Send email] process element here: https://academy.creatio.com/docs/user/bpm_tools/process_elements_refere…



Regards,

Kseniia

Kseniia Prokopenko,

If I have a string of multiple addresses, I don't know how many at the time I create the business process , so I can't add + to the TO when I create the business process, Is there a way to add + inside the business process when it runs (like loop over all addresses and add TOs)?

Show all comments
Outlook
outlook connector
Email
Service_Creatio
7.17

Is this add-on no longer available, no longer functioning? We used this add-on from the marketplace called "SmartCloud Connect for bpm'online" for the last few years. It was free and it was great as it functioned to send 1 specific email to Creatio from a user's outlook mailbox instead of syncing all emails. Now we started seeing this error just this week:

 

I see there are 2 other outlook add-ons that are paid subscriptions, does anyone use those and enjoy them?

 

Our concerns with syncing all emails using Creatio's standard email sync feature is that unwanted emails will get synced and be visible to other users, for example a manager discussing pay or status of an employee in an email and other users seeing that once it syncs to Creatio. Is Creatio working on any enhancements so using their standard outlook sync service so that users can have more specific control on which emails they sync?

Like 0

Like

2 comments

Hi, Mitch

 

This add-on was removed from Creatio Marketplace since it is no longer supported by the developer.

 

We indeed published two new Outlook add-ons in the meantime. If you are interested in their functionality, you can request a live demo.

Ivan Leontiev,

What are the two new Outlook add-ons? Just to confirm, are you referring to the Kewl Outlook Connector and bglobal Outlook add-on?

Show all comments
attachments
Email
Email_attachements
#sendemailelement

Hi,

 

I'm working with the "Send Email with Attachment" element from the marketplace and I'm getting a strange error.

 

Terrasoft.Common.InvalidObjectStateException: Property "Recipient1" is missing in type "EmailTemplateUserTask".

   at Terrasoft.Common.ReflectionUtilities.GetPropertyDescriptor(Object source, String propertyName)

   at Terrasoft.Core.Process.ProcessActivity.GetParameterValue(ProcessSchemaParameter parameter)

   at Terrasoft.Core.Process.Configuration.EmailTemplateUserTask.GetEmailAddresses(String parameterNamePrefix)

   at Terrasoft.Core.Process.Configuration.BaseProcessEmailMessageProvider.CreateEmailMessage()

   at Terrasoft.Core.Process.Configuration.BaseProcessEmailMessageProvider.GetEmailMessage()

   at Terrasoft.Core.Process.Configuration.GlbSendEmailAttachUserTask.InternalExecute(ProcessExecutingContext context)

   at Terrasoft.Core.Process.ProcessActivity.ExecuteElement(ProcessExecutingContext context)

   at Terrasoft.Core.Process.ProcessActivity.ExecuteItem(ProcessExecutingContext context)

   at Terrasoft.Core.Process.ProcessFlowElement.Execute(ProcessExecutingContext context)

 

The strange thing is that all the element's fields are filled in.

Furthermore, It's a process I copied from a working process with this element.

I also tried deleting the element, but the issue presists.

 

Looking forward to having an advice on this issue.

 

Thanks,

Raz

Like 0

Like

4 comments
Best reply

Hello Jelena,



You can now send emails with attachments out of the box using 'Process file' and 'Send email' process elements.

Dear Raz,

 

Try to check the process by enabling trace and checking it in the executed process. Also, you can switch automatic sending to manual and check the recipient field in a created email. 

 

Best regards,

Angela

Angela Reyes,

Thank you

I'll check that

Hello Creatio team,

I've just tried to install add-on in Creatio 7.18.1 version (full-bundle) and I am getting below error when I try to use this element in the business process. 

Please check. Thank you in advance.

 

BR,

Jelena

Hello Jelena,



You can now send emails with attachments out of the box using 'Process file' and 'Send email' process elements.

Show all comments