HTML document, ASCII text
        
            1
            {% extends "mail.html" %} 
        
            2
            {% block content %} 
        
            3
                <h1>You must verify your email address</h1> 
        
            4
                <p> 
        
            5
                    Someone has requested that the account {{ username }} use this email address ({{ new_email }}) 
        
            6
                    on this server. This email is safe to ignore; you will keep your current email address. 
        
            7
                    This will expire in 24 hours. 
        
            8
                    Please access the following WWW address to verify this email address: 
        
            9
                </p> 
        
            10
                <a href="{{ url }}">{{ url }}</a> 
        
            11
            {% endblock %} 
        
            12