Increasing size of Email Editor in Sage CRM

By | August 7, 2014

Communications is one of the pillars of successful business. We all communicate with via phone or emails on daily basis. Sage CRM provides SMTP, POP email integrations and inbuilt Email editor goes very well for any set of requirements. However size of the email editor that comes by default is sometimes not sufficient.
New Stuff: Change Default Cursor Position for Find Screens
Have a look at out of the box email editor here.
1
Here is how you can change the size of this field.
1. Navigate to Customization -> Communication -> Screens tab.
2. Click on the Email Filing Box screen name.
3. Enter the below script under Custom Content field
<script>
$(document).ready(function() {
var fckFrame = document.getElementsByName(“iframebody”);
$(fckFrame[0]).attr(“width”, “800px”); (Set the width of frame in pixels)
$(fckFrame[0]).attr(“height”, “1000px”); (Set the height of frame in pixels)
});
</script>
4. Save the changes.
Here is how email editor looks after applying above mentioned changes.
3
Also Read:
1) Sending email in CRM through COM API and creating email out communication
2) Email Screen in Sage CRM 7.2
3) SMTP details for Custom Emails from COM API
4) Processing Inbound Emails using Rule-sets
5) Upgrading SageCRM with Inbound email customizations? Read this first.