System for mass emailing

Hi again, can anyone recommend me a good vps provider for cold mail landing page?
I use multi domain to host the CPA offer(dating/crypto etc) landing page , and also track clicks,
Seems alexahost doesn't allow this, just got my account blocked
 
Hi again, can anyone recommend me a good vps provider for cold mail landing page?
I use multi domain to host the CPA offer(dating/crypto etc) landing page , and also track clicks,
Seems alexahost doesn't allow this, just got my account blocked

Just use cloudflare.
 
It works very well, just like I said depending on the list size it takes a while. For lists over 10k it takes several hours.
They do not take your lists, at least that whats they say. I have been using them for 6 months no problem.
Would you please share the m@ilerk!ng soft in mediafire hosting site and then only share the 15 key digit (like gqip8g8yrndlxp3)? Just waiting for your feedback here!
 
@DueceBigalow
@Askee

Lution.ee doesn't have enough email account to buy, do you have another option?
Bump! Do you know any other alternative?
Bump! Do you know any other alternative?
Nope not yet, I would like to know of one because its hardly generating accounts anymore. I am watching all day and there is nothing for most of the week.


The solution for buying accounts on lution(Like my little rhyme? :) ) is have a bot coded that uses their api to purchase. Will explain straight up what I mean... The bot will use their api instructions for the site to purchase for you automatically. So you could set your bot to buy you 3k accounts and it will just keep buying accounts until you hit 3k. That way you're not fighting other buyers all day to get accounts, the bot does it all.

I'm sure someone on bhw could code this just need to hire someone or you might already know a programmer. The bot is pretty simple but a big time-saver.
 
@DueceBigalow
@Askee


Bump! Do you know any other alternative?

Nope not yet, I would like to know of one because its hardly generating accounts anymore. I am watching all day and there is nothing for most of the week.


The solution for buying accounts on lution(Like my little rhyme? :) ) is have a bot coded that uses their api to purchase. Will explain straight up what I mean... The bot will use their api instructions for the site to purchase for you automatically. So you could set your bot to buy you 3k accounts and it will just keep buying accounts until you hit 3k. That way you're not fighting other buyers all day to get accounts, the bot does it all.

I'm sure someone on bhw could code this just need to hire someone or you might already know a programmer. The bot is pretty simple but a big time-saver.
Hope your doing well Uncle Spam.

Much higher quality accounts & my favorite right now, have spent around $300 so far haha:

https://hotmail007.com/
 
Hope your doing well Uncle Spam.

Much higher quality accounts & my favorite right now, have spent around $300 so far haha:

https://hotmail007.com/
Doing better still not 100% ran into some life probs. Thanks!

How much do they charge per acc/per k?
 
should've just clicked :)
$0.002

How are these higher quality just curious why you say that?
 
How are these higher quality just curious why you say that?
 
How are these higher quality just curious why you say that?
I tested the accounts of lution.ee and hotmail007 a couple weeks ago.

Both emails I sent using their accounts had a link to a landing page in it.
When I tested hotmail007 hotmail accounts I got around 80 link clicks.
When I tested lution.ee hotmail accounts i got around 20 link clicks.
 
I tested the accounts of lution.ee and hotmail007 a couple weeks ago.

Both emails I sent using their accounts had a link to a landing page in it.
When I tested hotmail007 hotmail accounts I got around 80 link clicks.
When I tested lution.ee hotmail accounts i got around 20 link clicks.
gotcha I see they have an api too which is good in case accounts get low you can have a bot buy for you.
 
gotcha I see they have an api too which is good in case accounts get low you can have a bot buy for you.
If someone here familar with python, he can start with the following code, it support both lusion and bee,
Btw:
1. in my test , bee is better than lusion, most of time bee can send out 7-8 mails before block in my case, for lusion sometimes only 1-2
2. The accounts will die after 2-4 hours according to the support, so the best you can do is integration the script with mail, I mean for example after buy 10 accounts, use these accounts send mail instantly

Good luck


Code:
import json
import requests


import time




LUTION_API_KEY = "xxxx"



def get_email_and_balance():
    url = f"https://api.lution.ee/auth/me?apikey={LUTION_API_KEY}"
    response = requests.get(url)
    data = response.json()
    email = data.get('email')
    balance = data.get('balance')
    return email, balance




def buy(quantity):
    url = f"http://api.lution.ee/mail/buy?mailcode=HOTMAIL&quantity={quantity}&apikey={LUTION_API_KEY}"
    response = requests.get(url)
    
    return response.json()
    
    """
    data = response.json()
    if data.get('Code') != 0:
        return None
    emails_list = data['Data']['Emails']
    return emails_list
    """



def extract_emails():
    json_data = {
        'Code': 0,
        'Message': 'Success',
        'Data': {
            'TransId': '18659061',
            'Product': 'HOTMAIL',
            'Quantity': 2,
            'UnitPrice': 0.001,
            'UnitPriceUsd': 0.001,
            'TotalAmount': 0.002,
            'TotalAmountUsd': 0.002,
            'Emails': [
                {'Email': '[email protected]', 'Password': 'VU0XFVJzCbJ'},
                {'Email': '[email protected]', 'Password': 'IPHuWsf55F'}
            ]
        }
    }
    
    return json_data


    
    
def save_emails_to_file(emails, filename):
    with open(filename, 'w') as file:
        for email in emails:
            file.write(f"{email['Email']}:{email['Password']}\n")




    
    
    
    
#[{'addr': '[email protected]', 'app_pwd': 'VV9uCLZaUDW', 'usr': "It's me", 'sig': "It's me\nMentor\nDream big, work hard", 'host': 'a0cc8113-4a48-4984-966a-4bc1b23d804e'}]
def load_ht_accounts(quantity):
    
    email, balance = get_email_and_balance()
    if balance < 0.1:
        print("##########Balance is low##########")
    
    data = buy(quantity)
    #data = extract_emails()
    print(data)
    
    if data.get('Code') != 0:
        print("Buy hotmail accounts failed")
        return False
    
    emails_list = data['Data']['Emails']
    
    esp_db_init.import_data(emails_list)
    #save_emails_to_file
    
    return True

#[email protected]:o1rsdpLP2jG
def load_bee_accounts(quantity):
    apikey = "xxxx"
    url = f"http://bee-mails.com/getEmail?num={quantity}&key={apikey}&emailType=hotmail&format=txt"
    response = requests.get(url)

    if response.status_code != 200:
        print(f"Failed to retrieve emails. HTTP Status Code: {response.status_code}")
        return False
        
    # Read the response text and split it into lines
    lines = response.text.splitlines()
    
    print(lines)
    
    emails = []
    for line in lines:
        line = line.strip()
        if len(line) < 5:
            continue
            
        mail = {}
        mail_prop = line.split(":")
        
        mail['Email'] = mail_prop[0]
        mail['Password'] = mail_prop[1]
        print(mail)
        emails.append(mail)

    esp_db_init.import_data(emails)
    
    return True
    

        
    
    

if __name__ == '__main__':
    
    load_bee_accounts(2)
    
    """
    data = extract_emails()
    if data.get('Code') == 0:
        
        emails_list = data['Data']['Emails']
    
        esp_db_init.import_data(emails_list)
    """
 
are u also limited to send 40-50 mails from outlook before got limited? I got same when using smtp and even if manually sending from web lol
I haven't mailed in so long with hotmail/outlook... Last time I did mail I used 900 something accounts and got out 40k.
Hi @UncLe Spam, first of all thanks for the great tips,

One question: lospollos seems doesn't allow cold mail traffic, so in your case, you insert the dating offer link directtly in mail or build a landing page, then from landing page redirect to dating offer?
What I was doing was using short urls that redirect to a hosted domain that is running a php script that would redirect to my affiliate link. So a message like this for example: Single girl looking for stud to hook up tonight shorturldotcom. I was also mailing a clicker list of people interested in dating offers that I built.

Hi UncleSpam @UncLe Spam

1)Now which proxy company(except stormproxy) you use for mass smtp email sending?
I see most of the proxy companies closed thier smtp ports.
2)Does Mailerking can solve hotmail/outlook captchas now?

Thanks
1) Everyone says storm proxy isn't working but it's always worked for me could be because I've been using them for a long time. I'm not using them now so I can't test at the current moment. I don't know of another one off the top of the head that is affordable. You could try advanced.name but not sure how the quality will be.
2) When you're using MailerKing for hotmail via SMTP nothing is done through the web and you won't get captchas. If you were using a webmailer which MailerKing once was and still is it just needs to be updated for the web methods to work then yeah you would run into captchas.

I know there are options in the marketplace, but was checking if @UncLe Spam would share his wisdom on that too. We've been running similar setups so I guess his option would fit me too
Only thing I'm sharing is this hotmail stuff. Maybe someone else might be able to help you sorry.

I skipped all this the other day and thought I would respond back. Been dealing with some probs and been away for a bit.
 
@UncLe Spam
What I was doing was using short urls that redirect to a hosted domain that is running a php script that would redirect to my affiliate link. So a message like this for example: Single girl looking for stud to hook up tonight shorturldotcom. I was also mailing a clicker list of people interested in dating offers that I built.

----
Thanks very much, may i ask which short url service you are using?

And by the way, yes storm proxy is working, I can confirm
 
goo.gl but if you don't have any of those short urls(since you can't create them anymore) bit.ly will work.
Can we use same website url/short url in 100K+ emails? or hotmail will block outbound emails due to same url in mass emails?

Need Spintax message option or no need for 100K emails send daily?
 
With such an email volume, the problem is usually not with the setup. It's rather on how lenient is your hosting provider towards letting cold emails and spam reports out of their IPs even if all other things checks out 100% on your end.
 
Can we use same website url/short url in 100K+ emails? or hotmail will block outbound emails due to same url in mass emails?

Need Spintax message option or no need for 100K emails send daily?
Not sure how things are currently but when I was mailing I would use 10 to 15 short urls and things were fine. I know some people use way more than that.

I would always spin messages to help with randomization {Hi|Hello|Hows it going}. Randomizing things will always help with emails getting sent when sending mass mail.

A trick I learned a long time ago with links in the body/message of your email and using short urls is this. Take a short url for example this: http://bhw.com/tophat?as1df2gh3 Your short url that you create will be http://bhw.com/tophat and then everything after the question mark ? is random. You can do this in Mailer King and it will randomize things after the question mark ? - 1st example: http://bhw.com/tophat?#RANDOM# 2nd example: http://bhw.com/tophat?#RANDOMNUM(5,10)# On the 2nd example the (5,10) can be changed to what you want. Those numbers just tell the bot how many random numbers to generate.
 
Back
Top