Schedule e-mails for email marketing Campaigns for highest deliverability? šŸ“¬

Hi guys :smiley:

Weā€™re currently planning to send out our first email campaign through SuiteCRM and I am wondering if there is a way to schedule when (which day and time), the e-mails are sent out and delivered to the prospects.

According to existing research available on the internet the best days are Tuesdays and Thursdays before 08:00 am.

So it would be nice to be able to configure SuiteCRM campaign module to do just that in order to get the highest deliverability and ROI.

Thanks in advance :+1:
Kind regards
PowerQuest

One of the option in the final stages of the campaigns wizard is exactly that, time of delivery, if I am not mistaken.

If I am, then have a look at the scheduler job that sends out the campaign, something like ā€œNightly emailsā€ - you can change the schedule there too.

1 Like

Thanks bunch @pgr for the help.

Iā€™ll check it outā€¦ :+1:

Kind regards
PowerQuest

By the way, the logic of those settings is like this:

  1. The Run Nightly Mass Email Campaigns scheduler job kicks off at the assigned time
  2. It checks for any Campaigns that are past their scheduled time and sends them.

I confirm that the Wizard has such options, at the Marketing tab:

image

Make sure your command-line (CLI) PHP is in the correct timezone, because when running from Schedulers, thatā€™s the one that applies:

php -i | grep timezone

If it needs changing, the correct ini can be found with this:

php -i | grep php.ini
1 Like

Thank you, its appreciated @pgr ! :smiley:

By the way do you may happen to know where you can find all the SuiteCRM short codes (like an overview or something), which are printed into the emails when sent, like click tracking, first/last name, unsub link etc. etc?

Iā€™m currently custom coding the e-mail templates and i need to find the list of these short code so I can code/add these into the email html codeā€¦

Thanks again! :facepunch:

Kind regards
PowerQuest

Sorry, I donā€™t know of any place where such a compiled list exists. Youā€™ll have to pick things up from all the separate places where it is casually mentioned.

From the work Iā€™ve done re-working all of those places where templates are used (for my add-on PowerReplacer, I can tell you that the code is a bloody mess, and there are differences between all the several places, and some things work in one place donā€™t work in others, and basic things youā€™d expect to workā€¦ donā€™t.

And one of the biggest problems isnā€™t even how the templates translate; itā€™s how to get the Templates to get saved just like you entered them, instead of getting changed repeatedly and senselessly.

Sorry if this sounds a bit bleak :slight_smile: Have a great Sunday!

1 Like

Thanks a lot @pgr ! :facepunch:

Hmm that link with " HTML email template editor output is filtered with purifier upon saving" sounds very scary. :scream:

I have built perfectly coded html templates that are 99.9% compliant with most email providers, so donā€™t what SuiteCRM to mess or change my code for obvious reasons.
I just want to save the cede ā€œas isā€ in the HTML editor, (Just like you can do in WordPress for example).

I s there a way to turn off that purifier function?

Kind regards
PowerQuest

The quickest way to achieve that is to go directly into the database and saving the template there, and never saving it inside SuiteCRM.

Itā€™s in the email_templates table.

There are ways to get the editor to behave a little bit better (it also depends on exactly which content you have), but as you can see by my last post, it can get tricky. If you want to try just one (which might be enough), try this one.

I have to say: I am at a point where I fully understand the workings of editors and templates, and I have no intention of leaving this broken just to get more add-on sales. I would gladly push solutions into core.

What is really stopping me is a) lack of time and more importantly, b) Iā€™ve stopped making any substantial new PRā€™s (made a couple of really basic ones), until I start seeing my years-old PRā€™s getting mergedā€¦

Hi @prg and thanks for your reply.

So I suppose its just about making a new DB table section then in email_templates?
is there anything special I should take into consideration when making it?

Thanks a bunch, Iā€™ll check it out. :+1:

Yeah, I understand you.
Why should you put time and motivation into it if Nothng happens right?
No point if they devs themselves doesnā€™t pickup on these and get it done first. :wink:

Have wonderful evening and thanks again. :smiley:

Kind regards
PowerQuest

For the database editing, just create an email template normally inside SuiteCRM, save it, and afterwards go look at the email_templates table and locate the row you just created.

Change fields body and body_html to set the content of your email (plain-text + html).

Ok, cool, thanks a lot @pgr :wink:

Kind regards
PowerQuest