Recently I was facing mail configuration issue with godaddy server in laravel framework. So now I am going to share solution for solve issue. Laravel by default uses swift mailer. If you are getting same issue which I was getting with godaddy server in laravel framework …
Laravel and PHPMailer source code for sending email
Laravel by default uses swift mailer. If in some case you are getting issue while using swift mailer, In this case you can use PHPMailer. In Laravel 5.4 or Above, you need to do the following steps Install the PHPMailer on your laravel Application. After going to your project …

How to Start and automatically Restart NodeJS server using PM2
In this blog, we will learn how to start/restart the NodeJS server using PM2. PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without the downtime and to facilitate …
Make links and emails clickable from paragraphs in UI
When user enters text in paragraph for mailto, http or incorrect http link and we want to make it clickable use below javascript code. EX :- FROM – Hello these are my links www.google.com , http://www.google.com or contact us to test@inheritx.com TO Hello these are …
Download Manager Jetpack Component
The Download Manager is a service for handling long-running downloads. The Download Manager handles the HTTP connection and check for connectivity changes, system reboots, etc. to make sure that the download completes successfully. The Download Manager will notify the Activity using a broadcast receiver once …

iTunes Search API
The Search API allows you to place search fields in your website to search for content within the iTunes Store and Apple Books Store. You can search for a variety of content; including books, movies, podcasts, music, music videos, audiobooks, and TV shows. To search …
Simplest adapter for RecyclerView
Here is the easiest way to bind adapter to recycler view with few lines of code using Last Adapter. Don’t write recycler view adapter again. Not even viewHolder!. Basically Last Adapter use Data Binding to bind data with your views. Data Binding Library is a support …
Animations in Angular 7
Animations in angular makes our application pleasant to our see and makes user experience more realistic. So i would encourage you to use basic animations on forms, form elements, table or any of the html tags. You should have BrowserAnimationsModule in module.ts file and then …
react js Av Form and reactstrap validation
import React from ‘react’; import { AvForm, AvField, AvGroup, AvInput, AvFeedback, AvRadioGroup, AvRadio, AvCheckboxGroup, AvCheckbox } from ‘availity-reactstrap-validation’; import { Button, Label, FormGroup } from ‘reactstrap’; export default class Example extends React.Component { constructor(props) { super(props); this.handleSubmit = this.handleSubmit.bind(this); this.state = {}; } handleSubmit(event, errors, …
ImageMapping in UIImageView
1. Add MTImageMapView.h and MTImageMapView.m file in Project 2. Add BridgeHeader File #import “MTImageMapView.h” 3. Add Custom Class MTImageMapView in UIImageView 4. Add Image and Coordinate .plist file in Project coordinate file added to image different coordinate location 4. Outlet of UIImageVIew @IBOutlet weak var imgView: MTImageMapView! var …