How to Set Up Email-to-Case and On-Demand Email-to-Case
In any Organization, Support is important to enhance good relationship with their customers. In Salesforce, whenever a customer mails any need of support or interaction with the organization, then the mail is automatically converted into case and assigned to the certain user based on the subject and information available in that mail. In this, we will look into Email-to-Case and On-Demand Email-to-Case.
How to Create Reminder or Automatic Reminder in Salesforce
In Salesforce Organization, by using salesforce Automated reminders & task reminder email you can manage all the leads who are helpful for the business that you won't miss anything on anyone.
How to Share Data Across Salesforce Organizations using Salesforce to Salesforce Integration
Customers have their own organizations in a shared platform. Sometimes, one organization may require to fetch data from the other one. To share data between two organizations, there are some methods in salesforce, one of them is establishing Salesforce to Salesforce connection in both organizations.
Integration of Linkedin API in Python Django
Using Linkedin integration, we can get the user's verified email id, general information, and work history in less span of time, and a user can also share articles.
These Following steps are needed for Linkedin integration:
1. Creating a LinkedIn app
2. Authenticating the user and getting an access token
3. Get user information, and work history using the access token
Understanding Checkout Flow in Django Oscar
Explaining Django Oscar checkout flow.
Django - Migrating from Function Based Views to Class Based Views
The single most significant advantage in Django class-based views is inheritance. On a large project it's likely that we will have lots of similar views. instead of writing the repeated code we can simply have our views inherit from a base view.
Integration of 2Checkout with Django
Payment Gateways which facilitate communication within banks and Security is an integral component of all payment gateways, as sensitive data such as Credit Card Numbers need to be protected from any fraudulent parties.We are having payment gateways like paypal,braintree,payumoney,2checkout... In this post,we will see how to integrate 2checkout with our django application.
How to Create Initial Django Migrations for Existing DB Schema
Django provides the comfort database migrations from its version 1.8, with which we can avoid the usage of third party packages like south. Adding migrations to new apps is straightforward - they come preconfigured to accept migrations, and so just run make migrations once you’ve made some changes. But if your app already has models and database tables, and doesn’t have migrations yet or you got your migrations messed up, you’ll need to convert your app to use migrations.
How to Create Custom User Model or Extend User Model in Django
Django provides built in authentication which is good for most of the cases, but you may have needs that are being served with the existing system. For Ex: You want 'email' for authentication purpose rather than Django's username field and you want an extra field called 'display_name' as full name for the logged in User. To meet the above requirements, we need to customize Django's built-in user model or substitute a completely customized model.
Letsencrypt Wildcard - Setup Wildcard Subdomain Using Letsencrypt and Certbot
To get wildcard supported certificates, we need to pass the challenge which requires adding TXT records in your dns records.
To get certificates for single domains, there is no need to modify dns records. Check this link https://micropyramid.com/blog/configure-ssl-with-letsencrypt-and-nginx/ for more info.