Coder Social home page Coder Social logo

Problems with Homepage about disposable-mailbox HOT 7 CLOSED

synox avatar synox commented on July 24, 2024
Problems with Homepage

from disposable-mailbox.

Comments (7)

HashHackerAds avatar HashHackerAds commented on July 24, 2024

@synox Another Problem Found.
Check here
https://bhadoomail.com/bhadoo.net/#/Support
Capital Letters doesn't effects retrieval of emails.
while in new version
https://beta.bhadoomail.com/[email protected]
and
https://beta.bhadoomail.com/[email protected]

doesn't reads email if Capitals are in there.

from disposable-mailbox.

HashHackerAds avatar HashHackerAds commented on July 24, 2024

@synox
add click to copy button feature please
here is code
https://github.com/wp-cdn-pbf/cdn.bhadoo.net/blob/master/code2copy.txt

from disposable-mailbox.

Spegeli avatar Spegeli commented on July 24, 2024

i can confirm the capital letters issue.
To fix this we need to change the address to lowercase:

    // print emails with html template
    $address = strtolower(filter_var($_SERVER['QUERY_STRING'], FILTER_SANITIZE_EMAIL));

Example: https://www.postfach2go.de/Vanilla/[email protected]

//Edit:
For the Copy Button i would prefer:

        function copyAddress(address) {
            var inp = document.createElement('input');
            document.body.appendChild(inp);
            inp.value = address;
            inp.select();
            document.execCommand('copy',false);
            inp.remove();
        }

<p><button class="btn btn-outline-primary" onClick="copyAddress('<?php echo $address ?>');">Copy Email</button></p>

Example: https://www.postfach2go.de/Vanilla/[email protected]

from disposable-mailbox.

synox avatar synox commented on July 24, 2024
  1. To avoid refreshing parts of the page:
    With the attribute "data-turbolinks-permanent" you can exclude a dom tree from beeing replaced.
    example:
    <form id="header-form" data-turbolinks-permanent action="?" method="post">

See https://github.com/turbolinks/turbolinks

  1. In commited a version with strtolower.

  2. Copy button: I like Spegeli's version. jQuery is opselete.

Thanks for your contributions! 🥇

from disposable-mailbox.

synox avatar synox commented on July 24, 2024

Let me know if you have any other issue (create a ticket for each issue, or reopen this one)

from disposable-mailbox.

synox avatar synox commented on July 24, 2024

@HashHackerAds Can I link to https://bhadoomail.com as a demo site?

from disposable-mailbox.

HashHackerAds avatar HashHackerAds commented on July 24, 2024

from disposable-mailbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.