MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Customer review email template

Subject line: Your feedback is important to us BODY Dear/Hi <<Customer/Client name>> It was our sincere pleasure to provide our service for you recently. We truly appreciate your business, support and more specifically your feedback. We take feedback from our customers very seriously as it allows us to continuously improve upon our services. As a … Read more

How to upload image in the database and send mail image

1st step:- Open command prompt in C:\xampp\htdocs. 2nd step:- Write the code given below in the opened command prompt to make laravel project.    composer create-project –prefer-dist laravel/laravel ImageUpload “5.8.*” 3rd step:- After the project is created, open the folder in any code editor. 4th step:- Now open xampp. And make a database. 5th step:- … Read more

Crontab condition, if a file size is more than 5000K than send an email

scmuser created the topic: crontab condition, if a file size is more than 5000K than send an email find /var/www/vhosts/domain/folder/ -name ‘*.flv’ -size +5000k | grep flv && /bin/mail -s “The file is available!” “my@address.com” > /dev/null If grep detects a line containing the string flv in the output of find it returns 0, otherwise … Read more