Sendy For Email Marketing

Is this still the best way to get a list cleaned?
Yes, or as per @BamaStangGuy outlined. I wasn't referring to a free option... you scroll down their price list and at the bottom are pay as you go rates to clean x size.

The pricing for my option is cheaper is all... hence why I recommended it as a cheap way to clean your list.

Screen Shot 2017-02-02 at 8.02.45 am.webp
 
I cut my recipients right down over time. I downloaded several recent campaigns, I did the last 5, anyone who failed to open all 5 I sent to the unsubscribed list. I periodically do that now... so instead of wasting $$$ sending to people who are never going to open the email, I changed my open rate from 5 - 10% to 85 - 95% open rate.

I periodically repeat the process.
 
I cut my recipients right down over time. I downloaded several recent campaigns, I did the last 5, anyone who failed to open all 5 I sent to the unsubscribed list. I periodically do that now... so instead of wasting $$$ sending to people who are never going to open the email, I changed my open rate from 5 - 10% to 85 - 95% open rate.

I periodically repeat the process.

I will probably do that to this list after a few more emails.
 
Just purchased Sendy and have installed it on my dedi server, inside my nginx with php 7.1 configured xenforo site.

I've completed the install process, and unable to get beyond the login page. No issue with the username/password, its correct, but hitting Sign-In and I'm almost immediately looped back to the Login page.

My Sendy related nginx config is ...
Code:
        # Compact way of dealing with all extensionless URLs that use the URL path as a GET variable
        location ~ /sendy/(l|t|w|(un)?subscribe)/ {
                add_header X-Robots-Tag "noindex, noarchive";
                rewrite ^/sendy/([^/]+)/([a-zA-Z0-9/]+)$ /sendy/$1.php?i=$2 last;
        }

        # Sendy specific internal rewrites. Sendy URLs are extensionless, this rule matches extensionless URLs and appends the .php extension
        location /sendy/ {
                add_header X-Robots-Tag "noindex, noarchive";
                rewrite ^/sendy/([a-zA-Z0-9\-]+) /sendy/$1.php?$args last;

Anyone else experienced this and found a resolution?

I've been through https://sendy.co/troubleshooting#login-page-reloads-without-error-message and ruled out all 4 options.
 
Just purchased Sendy and have installed it on my dedi server, inside my nginx with php 7.1 configured xenforo site.

I've completed the install process, and unable to get beyond the login page. No issue with the username/password, its correct, but hitting Sign-In and I'm almost immediately looped back to the Login page.

My Sendy related nginx config is ...
Code:
        # Compact way of dealing with all extensionless URLs that use the URL path as a GET variable
        location ~ /sendy/(l|t|w|(un)?subscribe)/ {
                add_header X-Robots-Tag "noindex, noarchive";
                rewrite ^/sendy/([^/]+)/([a-zA-Z0-9/]+)$ /sendy/$1.php?i=$2 last;
        }

        # Sendy specific internal rewrites. Sendy URLs are extensionless, this rule matches extensionless URLs and appends the .php extension
        location /sendy/ {
                add_header X-Robots-Tag "noindex, noarchive";
                rewrite ^/sendy/([a-zA-Z0-9\-]+) /sendy/$1.php?$args last;

Anyone else experienced this and found a resolution?

I've been through https://sendy.co/troubleshooting#login-page-reloads-without-error-message and ruled out all 4 options.
Code:
    location /sendy/l/ {
        rewrite ^/sendy/l/([a-zA-Z0-9/]+)$ /sendy/l.php?i=$1 last;
    }

    location /sendy/t/ {
        rewrite ^/sendy/t/([a-zA-Z0-9/]+)$ /sendy/t.php?i=$1 last;
    }

    location /sendy/w/ {
        rewrite ^/sendy/w/([a-zA-Z0-9/]+)$ /sendy/w.php?i=$1 last;
    }

    location /sendy/unsubscribe/ {
        rewrite ^/sendy/unsubscribe/(.*)$ /sendy/unsubscribe.php?i=$1 last;
    }

    location /sendy/subscribe/ {
        rewrite ^/sendy/subscribe/(.*)$ /sendy/subscribe.php?i=$1 last;
    }
 
Thx.
With that, /sendy/login now gives me a 404


Code:
    location /sendy/l/ {
        rewrite ^/sendy/l/([a-zA-Z0-9/]+)$ /sendy/l.php?i=$1 last;
    }

    location /sendy/t/ {
        rewrite ^/sendy/t/([a-zA-Z0-9/]+)$ /sendy/t.php?i=$1 last;
    }

    location /sendy/w/ {
        rewrite ^/sendy/w/([a-zA-Z0-9/]+)$ /sendy/w.php?i=$1 last;
    }

    location /sendy/unsubscribe/ {
        rewrite ^/sendy/unsubscribe/(.*)$ /sendy/unsubscribe.php?i=$1 last;
    }

    location /sendy/subscribe/ {
        rewrite ^/sendy/subscribe/(.*)$ /sendy/subscribe.php?i=$1 last;
    }
Those are what I've used on multiple sites, and all work.
 
Back
Top Bottom