import React, { Component } from 'react';
import PropTypes from "prop-types"

export default class rapidmail extends Component {
    render() {
        return (
            <div>
                <h3>Rapidmail</h3>
                <p>This website uses Rapidmail to send newsletters. This service is provided by rapidmail GmbH, Augustinerplatz 2, 79098
                    Freiburg, Germany.</p>
                <p>Rapidmail is a service which organizes and analyzes the distribution of newsletters. The data you provide to subscribe
                    to our newsletter will be stored on Rapidmail servers in Germany.</p>
                <p>If you do not want your usage of the newsletter to be analyzed by Rapidmail, you will have to unsubscribe from the newsletter.
                    For this purpose, we provide a link in every newsletter we send. You can also unsubscribe from the newsletter directly
                    on the website.</p>
                <p>
                    <strong>Data analysis by Rapidmail</strong>
                </p>
                <p>For analysis purposes, emails sent with Rapidmail contain a tracking pixel which connects to Rapidmail servers when the
                    email is opened. This allows us to determine if a newsletter message has been opened.</p>
                <p>It also helps us determine which links have been clicked on. All links in the email are tracking links that allow us
                    to count your clicks.</p>
                <p>For more information about the analysis functions of Rapidmail, please refer to the following link:
                    <a href="https://de.rapidmail.wiki/kategorien/statistiken/"
                        target="_blank">https://de.rapidmail.wiki/kategorien/statistiken/</a>.</p>
                <p>
                    <strong>Legal basis</strong>
                </p>
                <p>Data processing is based on Art. 6 (1) (a) DSGVO. You may revoke your consent at any time. The data processed before
                    we receive your request may still be legally processed.</p>
                <p>
                    <strong>Storage duration</strong>
                </p>
                <p>The data provided when registering for the newsletter will be used to distribute the newsletter until you cancel your
                    subscription when said data will be deleted from our servers and those of Rapidmail. Data we have stored for other
                    purposes (e.g. email addresses for the members area) remains unaffected.</p>
                <p>For more information, see the privacy policy of Rapidmail at
                    <a href="https://www.rapidmail.de/datensicherheit" target="_blank">https://www.rapidmail.de/datensicherheit</a>.</p>
                <p>
                    <strong>Completion of an outsourced data processing contract</strong>
                </p>
                <p>We have entered into a data processing agreement with Rapidmail, in which we require Rapidmail to protect the data of
                    our customers and not to disclose said data to third parties. It can be downloaded here:
                    <a href="https://de.rapidmail.wiki/files/adv/muster-auftragsdatenverarbeitung.pdf"
                        target="_blank">https://de.rapidmail.wiki/files/adv/muster-auftragsdatenverarbeitung.pdf</a>.</p>
            </div>
        );
    }
}