Remove ‘noreply@salesforce.com on behalf of’ on Email Sent From Salesforce

The email delivery setting “Enable Sender ID compliance” automatically adds “no-reply@Salesforce.com.” to the Sender field on emails sent from Salesforce.

Disabling the Sender ID compliance setting will stop this.

To remove “noreply@salesforce.com on behalf of” from your outgoing email follow below steps

  • Click Setup || Email Administration || Deliverability.
  • Locate the Email Security Compliance section.
  • Deselect the Enable Sender ID compliance box.
  • Click Save.

Now the emails you send will no longer include ‘noreply@salesforce.com on behalf of’ in the Sender field.

Note: The reason the compliance email settings is enabled because when you send an email from Salesforce.com, SFDC spoofs our email address. Some companies do not accept unannounced spoofed emails because spammers will do the same thing, and puts security at risk.

Enable Salesforce1 User For Multiple Users in Salesforce

UserPermissionsMobileUser is the api name for the Salesforce1 User Check box on the user object. We can update UserPermissionsMobileUser value to the set of users to enable Salesforce1 User check box for multiple users in Salesforce.

Enable Service Cloud User For Multiple Users in Salesforce

UserPermissionsSupportUser is the api name for the Service Cloud Check box on the User object. We can update UserPermissionsSupportUser value to the set of users to enable Service Cloud User check box for multiple users in Salesforce.

Set Up Governor Limit Warning Email in Salesforce

  • Log in to Salesforce as an administrator User.
  • Click Setup || Administration Setup || Manage Users || Users
  • Click Edit next to the name of the user to receive the email notifications.
  • Select the Send Apex Warning Emails option.
  • Click Save.

Note: You can specify users in your organization to receive an email notification when they invoke Apex code that surpasses 50% of allocated governor limits.

Check Object Level and Field Level Security Within a Visualforce Page

<!--Check object level access within a Visualforce page-->
<apex:page>
    {!$ObjectType.Contact.Accessible} 
</apex:page>
<!--Check an Object field level access within a Visualforce page-->
<apex:outputText value="{!contactName}" rendered="{!$ObjectType.Contact.fields.Name.Accessible}" />
<!--Check an Object field level Update access within a Visualforce page-->
<apex:inputText value="{!contactEmail}" rendered="{!$ObjectType.Contact.fields.Email.Updateable}" />
<!--Check an Object Delete access within a Visualforce page-->
<apex:commandButton action="{!CustomDelete}" rendered="{!$ObjectType.Contact.Deletable}" />
<!-- Check an Object field level Create access within a Visualforce page .
stringToBecomeNewContactEmail is a generic string type-->
<apex:inputText value="{!stringToBecomeNewContactEmail}" rendered="{!$ObjectType.Contact.fields.Email.Createable}" />