Skip to main content

Privacy Policy

 Privacy Policy

This privacy policy applies to the Return Result Corp app (hereby referred to as "Application") for mobile devices that was created by Return Result Crop (hereby referred to as "Service Provider") as a Free service. This service is intended for use "AS IS".


Information Collection and Use

The Application collects information when you download and use it. This information may include information such as

  • Your device's Internet Protocol address (e.g. IP address)
  • The pages of the Application that you visit, the time and date of your visit, the time spent on those pages
  • The time spent on the Application
  • The operating system you use on your mobile device


The Application does not gather precise information about the location of your mobile device.


The Service Provider may use the information you provided to contact you from time to time to provide you with important information, required notices and marketing promotions.


For a better experience, while using the Application, the Service Provider may require you to provide us with certain personally identifiable information. The information that the Service Provider request will be retained by them and used as described in this privacy policy.


Third Party Access

Only aggregated, anonymized data is periodically transmitted to external services to aid the Service Provider in improving the Application and their service. The Service Provider may share your information with third parties in the ways that are described in this privacy statement.


Please note that the Application utilizes third-party services that have their own Privacy Policy about handling data. Below are the links to the Privacy Policy of the third-party service providers used by the Application:


The Service Provider may disclose User Provided and Automatically Collected Information:

  • as required by law, such as to comply with a subpoena, or similar legal process;
  • when they believe in good faith that disclosure is necessary to protect their rights, protect your safety or the safety of others, investigate fraud, or respond to a government request;
  • with their trusted services providers who work on their behalf, do not have an independent use of the information we disclose to them, and have agreed to adhere to the rules set forth in this privacy statement.


Opt-Out Rights

You can stop all collection of information by the Application easily by uninstalling it. You may use the standard uninstall processes as may be available as part of your mobile device or via the mobile application marketplace or network.


Data Retention Policy

The Service Provider will retain User Provided data for as long as you use the Application and for a reasonable time thereafter. If you'd like them to delete User Provided Data that you have provided via the Application, please contact them at resultreturn0@gmail.com and they will respond in a reasonable time.


Children

The Service Provider does not use the Application to knowingly solicit data from or market to children under the age of 13.


The Application does not address anyone under the age of 13. The Service Provider does not knowingly collect personally identifiable information from children under 13 years of age. In the case the Service Provider discover that a child under 13 has provided personal information, the Service Provider will immediately delete this from their servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact the Service Provider (resultreturn0@gmail.com) so that they will be able to take the necessary actions.


Security

The Service Provider is concerned about safeguarding the confidentiality of your information. The Service Provider provides physical, electronic, and procedural safeguards to protect information the Service Provider processes and maintains.


Changes

This Privacy Policy may be updated from time to time for any reason. The Service Provider will notify you of any changes to the Privacy Policy by updating this page with the new Privacy Policy. You are advised to consult this Privacy Policy regularly for any changes, as continued use is deemed approval of all changes.


This privacy policy is effective as of 2026-01-18


Your Consent

By using the Application, you are consenting to the processing of your information as set forth in this Privacy Policy now and as amended by us.


Contact Us

If you have any questions regarding privacy while using the Application, or have questions about the practices, please contact the Service Provider via email at resultreturn0@gmail.com.

Popular posts from this blog

How to send an e-mail using php - PHPMailer Part 1

You probably want to send an email from your code, well you can use a PHP in built function mail() , but since you are here, chances are that it is either you have tried it and stuck or may be you just need a simpler way to reach your goal since the PHP mail() has a handful of limitations when it comes to making use of popular features such as:  encryption  authentication HTML messages and  attachments. Also it needs a local mail server which is not included in Windows OS for Windows user. Well, thanks to PHPMailer t he classic email sending library for PHP, it is open source and can be can be installed through by  adding this line to your   composer.json   file: " phpmailer/phpmailer " : " ^6.2 " or run composer require phpmailer/phpmailer Alternatively, if you're not using Comp...

How to send an e-mail using php - PHPMailer Part 3

 Being that you are here, hope you have already gone through part 1 and 2 and now set to continue with the recipients settings. Copy the code below then we go through it step by step. $ mail -> setFrom ( 'vik03@username.ac.ke' , $dept ); it has 2 options, first option is the senders email, second option is the mail header which is optional. $mail->AddAddress($result->EmailId); Add a recipient, you can also add a name as a second option but that is optional, I have stored the recipient in a variable but you can still key it in as a row text. This snippet have the variables used as part of the mail build up, PHP concatenation and conditions have also played a part and trust me the library understands all this. $ mail -> Subject = $msg ; here is where the email subject is written. Since we had already set the email format to HTML above by including this line, $ mail-> isHTML ( true ); we can continue to add the email body now $mail->Body = $body; a...

How to send an e-mail using php - PHPMailer Part 2

 If you have gone through part 1 and done everything step by step then you are now ready to continue.  We had already created an instance as shown below 👇 After instantiation, now you are ready to create a mail inside your code. Copy the code below: Let us now go through it step by step. $ mail -> isSMTP (); is to allow you send the mail using SMTP. $ mail-> SMTPAuth = true ; this is to enable SMTP authentication. $ mail-> SMTPSecure = 'tls' enable encryption, there are at least two types of encryption used by PHPMailer, PHPMailer:: ENCRYPTION_STARTTLS and TLS encryption. $ mail -> Port = 587 ; TCP port to connect to, that is if you have used TLS encryption, if you have opted for`PHPMailer::ENCRYPTION_SMTPS` then use port 465 $ mail -> isHTML ( true ); Sets an email format to HTML $ mail -> Username = 'vik03@username.ac.ke' ; SMTP username, hosts email address $ mail -> Password = 'secret...