Thursday, May 18, 2017

Email verifier

1-Email Worker is a bulk email verify software. It can check if an email address exists without sending an email. If you sending bulk invalid email address, your email account will be disable, so this email checker is useful for you. Now this verify software is being used by tens of thousands of the internet vendors.

2-MaxProg

Free Maxprog with serial key

3- http://eel.surf7.net.my/

4- http://www.mailtester.com/

5- GSA

6- Atomic ****






Tuesday, May 16, 2017

Email Marketing Total Road Map


  1. Find key word to scrape email.
  2. Buy Scrapebox to scrape emails.
  3. Buy Proxy.
  4. Scrape email addresses.
  5. Buy Atomic email hunter to verify
  6. Create an excel list of emails categorized by Key word.
  7. Create a template.
  8. Buy email sender software.
  9. Create a VPS with IPs.
  10. Buy IPs.
  11. Create a scheduler php.
  12. Keeps your emails in the My SQL DB.
  13. Start campaign.

Friday, May 12, 2017

Email Marketing Templates

Hi Photo Edit,

Thanks for registering with EasySendy Pro,

I'm Bishal and I am here to help you get started with EasySendy Pro application.

Today, I would like to share a few information about how EasySendy Pro is helping business with hybrid email marketing services.

We have designed EasySendy Pro to address 3 major aspects of email marketing:
1. Drastically improve email delivery & open rate
2. Automate email list segmentation based on subscriber actions
3. Cut down email marketing budget with use of hybrid technologies

So, I thought of scheduling a call to do an interactive session where I would explain more about above mentioned features of EasySendy Pro which can help you with major improvement on the flow of ROI from email marketing.

Let me know what time will work the best . I’ll confirm and send a meeting invite.

Cheers!!!
Bishal Gupta
Contact: +919535483649
Skype: bishal.easysendy

Unsubscribe Here



Thursday, May 11, 2017

Linux SMTP Server Creations

Hello my dear BHW fellas, 

since i have noticed that a lot of guys, even some from this forum, are charging 100's of dollars for setting up a good Linux Smtp server with ip rotation i decided to write a nice tutorial for all you who does not have 100's of $ to spend on that. 

Some of the things i'm going to write here are, actually, copy/pasted from other sources, simply can't be arsed to rewrite something that is really common :).

Ok, so what you gonna need ? 


1) A linux server ( obviously lol :D), i have used CentOS as a OS, so i suggest you to with it also, you can buy either VPS either Dedicated it does not really matter, we don't need some killing machine for this, postfix will not take a lot of resources, but i do recommend to buy at last 512 MB of ram and 20 GB of HDD. You need to buy a VPS with many ip addresses, nowadays, ips become expensive and hard to get, you need to fill stupid justification and other stuff to get a lot of ips, but you can still find a providers which won't ask you for that.

Here is one good hoster : http://www.host1plus.com/vps-hosting/

They DO ALLOW mass mailing, however, they are not saying they allow SPAM, but since they can't prove do you really have opt-in lists or now, just make sure to make your emails looks legit with opt-out link, some fake company info and make them looks good and not spam like with just a banner image inside lol.

They are hosted in Germany and price per ip is 2$, you can find them cheaper, but these guys are quality and their TOS allow mass mailing, so it's up on you where are you going to buy VPS.

If you are going to spend some time on Google you will also find very cheap VPS's which comes with 4 or even 8 ip's by default, they are also good solution.

But i highly recommend you to buy at last 50 ip's, that will increase your inbox ratio a lot and won't lead your ips to blacklists fast. You will get blacklisted, that's a matter of time, but - more ips - more time without blacklisting. If you can afford your self 200 ips and if you will send only 100 emails per day per ip ( 20000 / day ), you won't get blacklisted ever.


Also at the end of this topic i will explain how to get whitelisted on some ISP's, mail providers and spam filters.




1 Install Postfix

This tutorial is for Debian, everything is same like with other Linuxes, just don't use sudo command :).

Installation


You will be shocked at how simple it is to install the Postfix mail server. All you have to do is follow these steps:


1) Open up a terminal window (or, if you are using a GUI-less server just log in).


2) Issue the command sudo apt-get install postfix.


That's it! Of course, depending upon the current state of your distribution, the installation may or may not have to install some dependencies. But this will happen automatically for you. The installation will also automatically start the Postfix daemon for you. So as soon as installation is complete you can test to make sure you can connect to your Postfix server with the command:


telnet localhost 25


You should see something like this:


Trying 127.0.0.1...
Connected to http://www.mymail.com.
Escape character is '^]'.
220 localhost.localdomain ESMTP Postfix (Ubuntu)


Now you might want to first make sure you can also connect to your domain in the same way with the command:


telnet http://www.mymail.com 25


Of course you will use your own FDQN in the above command (instead of mymail.com). Hopefully you will see the same output you did when you used localhost. If not, you will have to check to make sure your domain is pointing to your server or that port 25 traffic can get to your server from your router, switch, or firewall. Those issues are beyond the scope of this article however.


Now it is time to start configuration.


Configuring Postfix


The Postfix mail server has one main configuration file /etc/postfix/main.cf. This is where you will do the bulk of your configurations. Open this file up in your favorite text editor (mine is Nano) and look for the following section:


myhostname = 
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = 
relayhost =
mynetworks = 
mailbox_command = procmail -a "$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all


This is the section of the configuration file you must focus on. And, believe it or not, there isn't much to do. Below are the sections you need to configure:


myhostname: This is the hostname of your machine. But don't put the full hostname. If your machine hostname is mail.mydomain.com you will only use mydomain.


mydestination: This parameter specifies what destinations this machine will deliver locally. The default is:


mydestination = $myhostname localhost.$mydomain localhost


You could also use something like what I have used in the past (for simplicity's sake):


mydomain.com mydomain localhost.localdomain localhost


This call is up to you. Either way will work; but the latter line will help to avoid mailloops.


mynetworks: This line is a bit trickier. This entry will define authorized destinations that mail can be relayed from. You would think that adding your subnet here would work. Sometimes that is the case; sometimes not. You could go with a mynetworks entry that looks like:


mynetworks = 127.0.0.1/8


The above entry is a safe entry and defines local machines only.


You could also have an entry that looks like:


mynetworks = 127.0.0.1/8 192.168.100.1/24


The above entry would authorize local machines and your internal network addresses.


I have found, however, that the above entries will cause problems with relaying due to constantly changing dhcp addresses. Because of this I have used the following, specialized entry which will avoid this issue:


mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128


Now, if your mail server serves up mail to your entire domain, you will need to add another entry to that section above. That entry is:


mydomain = mydomain.com


Again, as in all configurations above, the mydomain.com will be substituted with your real domain.


Now, save that configuration file and restart your mail server with the command:


sudo /etc/init.d/postfix reload


Your mail server should be up and running.


Users


Since this is a Linux mail server, you will need to make sure you have a user name that corresponds with every email address you need. If your server has a GUI you can just use the GUI tool for this. If your server is a GUI-less server you can create users with the command:


sudo useradd -m USERNAME


Where USERNAME is the actual name of the user. The next step is to give the username a password with the command:


sudo passwd USERNAME


Again, where USERNAME is the actual username. You will be prompted to enter the new password twice.



2) Set Up DKIM On Postfix With dkim-milter (CentOS 5.2)



This howto has been superseded by http://www.topdog.za.net/postfix_dkim_milter
Introduction
DKIM is an authentication framework which stores public-keys in DNS and digitally signs emails on a domain basis. It was created as a result of merging Yahoo's domainkeys and Cisco's Identified Internet mail specification. It is defined in RFC 4871.


We will be using the milter implementation of dkim http://dkim-milter.sf.net on CentOS 5.2.





Installation
I provide Centos rpms for Dkim-milter at http://www.topdog-software.com/oss/ so we will install the latest version.


Install the rpm, ( 32bit and 64bit intel supported )
# wget http://www.topdog-software.com/oss/roundcube/andrew_topdog-software.com_key.txt
# rpm --import andrew_topdog-software.com_key.txt
# http://www.topdog-software.com/oss/dkim-milter/dkim-milter-2.8.2-0.$(uname -i).rpm





Generate the Keys
# sh /usr/share/doc/dkim-milter-2.8.2/dkim-genkey.sh -r -d <domain_name>


Replace <domain_name> with the domain name you will be signing the mail for. The command will create two files.


default.txt - contains the public key you publish via DNS
default.private - the private key you use for signing your email
Move the private key to the dkim-milter directory and secure it.


# mv default.private /etc/mail/dkim/default.key.pem
# chmod 600 /etc/mail/dkim/default.key.pem
# chown dkim-milt.dkim-milt /etc/mail/dkim/default.key.pem





DNS Setup
You need to publish your public key via DNS, client servers use this key to verify your signed email. The contents of default.txt is the line you need to add to your zone file a sample, is below


default._domainkey IN TXT "v=DKIM1; g=*; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDG81CNNVOlWwfhENOZEnJKNlikTB3Dnb5kUC8/zvht/S8SQnx+YgZ/KG7KOus0By8cIDDvwn3ElVRVQ6Jhz/HcvPU5DXCAC5owLBf/gX5tvAnjF1vSL8ZBetxquVHyJQpMFH3VW37m/mxPTGmDL+zJVW+CKpUcI8BJD03iW2l1CwIDAQAB"


; ----- DKIM default for topdog-software.com
Also add this to your zone file.


_ssp._domainkey IN TXT "t=y; dkim=unknown"





Configuration
Create the file /etc/sysconfig/dkim-milter with the contents below overwriting the existing sample file that was installed by the rpm, Make sure you set the SIGNING_DOMAIN variable to the domain or domains you will be signing mail for.
USER="dkim-milt"
PORT="inet:20209@localhost"
SIGNING_DOMAIN="<domain_name>"


SELECTOR_NAME="default"
KEYFILE="/etc/mail/dkim/default.key.pem"
SIGNER=yes
VERIFIER=yes
CANON=simple
SIGALG=rsa-sha1
REJECTION="bad=r,dns=t,int=t,no=a"
EXTRA_ARGS="-h -l -D"



Configure Postfix
You need to add the following options to the postfix main.cf file to enable it to use the milter.


smtpd_milters = inet:localhost:20209
non_smtpd_milters = inet:localhost:20209
Append the dkim-milter options to the existing milters if you have other milters already configured.


Start dkim-milter and restart postfix


# service dkim-milter start
# service postfix restart





Testing
Send an email to sa-test@sendmail.net or autorespond+dkim@dk.elandsys.com, you will receive a response stating if your setup is working correctly. If you have a Gmail account you can send an email to that account and look at the message details similar to the picture below, you should see signed-by "your domain" if your setup was done correctly.




3) SPF


This tutorial shows how to implement SPF (Sender Policy Framework) in a Postfix 2.x installation. The Sender Policy Framework is an open standard specifying a technical method to prevent sender address forgery (see http://www.openspf.org/Introduction). There are lots of SPF extensions and patches available for Postfix, but most require that you recompile Postfix. Therefore we will install the postfix-policyd-spf-perl package from openspf.org which is a Perl package and can be implemented in existing Postfix installations (no Postfix compilation required).


I want to say first that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!





1 Preliminary Note
I assume that you have already set up a working Postfix mail server.


The following procedure is distribution-independent, i.e., it should work on any Linux distribution (however, I tested this on Debian Etch).





2 Install Required Perl Modules
The postfix-policyd-spf-perl package depends on the Mail::SPF and the NetAddr::IP Perl modules. Therefore we are going to install them now using the Perl shell. Start the Perl shell like this:


perl -MCPAN -e shell


If you run the Perl shell for the first time, you will be asked a few questions. You can accept all default values. You will also be asked about the CPAN repositories to use. Select repositories that are close to you.


After the initial Perl shell configuration, we can start to install the needed modules. To install Mail::SPF, simply run


install Mail::SPF


In my case, it tried to install Module::Build (which is a dependency), but then it failed. If this happens to you, simply quit the Perl shell by typing


q


Then start the Perl shell again:


perl -MCPAN -e shell


and try to install Mail::SPF again:


install Mail::SPF


This time it should succeed, and you should see that it also installs the modules Net::DNS::Resolver::programmable and NetAddr::IP on which Mail::SPF depends.


A successful installation of Mail:SPF should end like this:


Installing /usr/local/bin/spfquery
Writing /usr/local/lib/perl/5.8.8/auto/Mail/SPF/.packlist
/usr/bin/make install -- OK


Because NetAddr::IP has already been installed, we can now leave the Perl shell:


q





3 Install postfix-policyd-spf-perl
Next we download postfix-policyd-spf-perl from http://www.openspf.org/Software to the /usr/src/ directory and install it to the /usr/lib/postfix/ directory like this:


cd /usr/src
wget http://www.openspf.org/blobs/postfix-policyd-spf-perl-2.001.tar.gz
tar xvfz postfix-policyd-spf-perl-2.001.tar.gz
cd postfix-policyd-spf-perl-2.001
cp postfix-policyd-spf-perl /usr/lib/postfix/policyd-spf-perl


Then we edit /etc/postfix/master.cf and add the following stanza at the end:


vi /etc/postfix/master.cf


[...]
policy unix - n n - - spawn
user=nobody argv=/usr/bin/perl /usr/lib/postfix/policyd-spf-perl
(The leading spaces before user=nobody are important so that Postfix knows that this line belongs to the previous one!)


Then open /etc/postfix/main.cf and search for the smtpd_recipient_restrictions directive. You should have reject_unauth_destination in that directive, and right after reject_unauth_destination you add check_policy_service unix:private/policy like this:


vi /etc/postfix/main.cf


[...]
smtpd_recipient_restrictions = permit_sasl_authenticated,permit_mynetworks,reject_unauth_destination,check_policy_service unix:private/policy
[...]
or like this:


[...]
smtpd_recipient_restrictions =
[...]
reject_unauth_destination
check_policy_service unix:private/policy
[...]
[...]
It is important that you specify check_policy_service AFTER reject_unauth_destination or else your system can become an open relay!


Then restart Postfix:


/etc/init.d/postfix restart


That's it already. You should check the README file that comes with the postfix-policyd-spf-perl package, it contains some important details about how postfix-policyd-spf-perl processes emails, e.g. like this part from the postfix-policyd-spf-perl-2.0001 README:


This version of the policy server always checks HELO before Mail From (older
versions just checked HELO if Mail From was null). It will reject mail that
fails either Mail From or HELO SPF checks. It will defer mail if there is a
temporary SPF error and the message would othersise be permitted
(DEFER_IF_PERMIT). If the HELO check produces a REJECT/DEFER result, Mail From
will not be checked.


If the message is not rejected or deferred, the policy server will PREPEND the
appropriate SPF Received header. In the case of multi-recipient mail, multiple
headers will get appended. If Mail From is anything other than completely empty
(i.e. ) then the Mail From result will be used for SPF Received (e.g. Mail
From None even if HELO is Pass).


The policy server skips SPF checks for connections from the localhost (127.) and
instead prepends and logs 'SPF skipped - localhost is always allowed.'




4) IP ROTATION VIA IP TABLES


First we need creating Interface aliases for your public IPs.


Let's say you have 5 ips


#ifup eth0:1
#ifup eth0:2
#ifup eth0:3
#ifup eth0:4




Now the iptables part.make sure your iptables support for statistic match module.


# iptables -m statistic -h
......
......
......
statistic match options:
--mode mode Match mode (random, nth)
random mode:
--probability p Probability
nth mode:
--every n Match every nth packet
--packet p Initial counter value (0 <= p <= n-1, default 0)
Next continue with iptables rule for rotating source IP addresses.


# iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o eth0 -m statistic --mode nth --every 5 -j SNAT --to-source 202.XXX.XX.2
# iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o eth0 -m statistic --mode nth --every 5 -j SNAT --to-source 202.XXX.XX.3
# iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o eth0 -m statistic --mode nth --every 5 -j SNAT --to-source 202.XXX.XX.4
# iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o eth0 -m statistic --mode nth --every 5 -j SNAT --to-source 202.XXX.XX.5
# iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o eth0 -m statistic --mode nth --every 5 -j SNAT --to-source 202.XXX.XX.6
done



6) REVERSE DNS

The easiest way to get rDNS is to buy a domain with your VPS and ask you hosted to set up rDNS with your VPS, they will do it for free, a domain is not really expensive and it will save you some time :).




7) Whitelisting


Whitelisting can help you to get your emails reach inbox instead of spam folder, 

i will teach you now how to whitelist your self on some spam filter systems and some email providers.


First of all you must have a domain which have valid rDNS with your server, and you must have a web site on your domain. This may takes you some time, but i highly recommend you to make a fake marketing agency web site, i know this may sounds unethical and, maybe even, illegal ( okay, it's hard to believe it could illegal since there is tons of hosting companies, web design agency and so on, which are not registered anywhere ), and you can make some simple looking web site explaining that you are providing email marketing services to your clients. Make sure you make it clear that you have a ZERO tolerance to spam and that all emails you have in your lists are generated by you, bla bla, opt in, bla bla, cpan spam, bla bla, just google some email marketing agency and see what they say :). This will helps you A LOT to get whitelisted almost anywere. 


- AOL WHITELISTENING 

URL : http://postmaster.aol.com/cgi-bin/whitelist/whitelist_guides.pl

It's very easy to get on their whitelist, but if they get tons of spam complains about your message, you will be removed to blacklist list very fast ^^

- YAHOO WHITELISTENING

URL : http://help.yahoo.com/l/us/yahoo/mail/postmaster/bulkv2.html

It's hard to get whitelisted on Yahoo, but give it a try.

HOTMAIL WHITELISTENING

URL : https://support.msn.com/eform.aspx?productKey=edfsjmrpp&ct=eformts

SPAM FILTERS WHERE YOU CAN ASK FOR WHITELISTENING 

- http://v4bl.org/

http://www.spamhauswhitelist.com/en/ - only with invite, so it's almost impossible to get there, but it's worth if you can

Basically here is the list of, almost, all spam filter systems, so Google their unblacklistening or whitelistening pages : 

AHBL 
ASPEWS 
BACKSCATTERER 
BARRACUDA 
BBFHL2 
BLOCKLIST.DE 
BSB 
BURNT-TECH 
CASA-CBL 
CASA-CBLPLUS 
CBL 
CHOON 
DNS-SERVICIOS 
EFnet RBL 
IMP-SPAM 
INPS_DE 
INTERSERVER 
ivmSIP 
ivmSIP24 
JIPPG 
LASHBACK 
MAILSPIKE-BL 
MAILSPIKE-Z 
NIXSPAM 
NOMOREFUNN 
PSBL 
RATS-Dyna 
RATS-NoPtr 
RATS-Spam 
REDHAWK 
SEM-BACKSCATTER 
SEM-BLACK 
SORBS-DUHL 
SORBS-SPAM 
SORBS-WEB 
SPAMCOP 
Spamhaus-ZEN 
UCEPROTECTL1 
UCEPROTECTL2 
UCEPROTECTL3 
WPBL 
BBFHL1 
SWINOG



So that's it guys, if you followed my tutorial correctly you have just saved your self 100's of $ and learned something very useful.


Have fun and make some cash ;)


Till next tutorial

DarioBl

Mass Mailing Guide -DarioBL

So, recently i got tons of your pm's about the mass mailing, where to get the e-mails and so on. So i decided to take some of my time to write a complete guide to mass mailing.

I will coverage the following steps :

1) Finding semi-targeted e-mails
2) How to create quality e-mails
3) How to send them
4) What to promote
5) CAN-SPAM act and legal stuff

So let's start !
__________________________

1) Finding semi-targeted e-mails.


Each job needs tools, our main tools in mass mailing world are : smtps + emails.

Now i will teach you how to find quality e-mails.

Finding e-mails is easier then you think, all you need is a Google, and it is good if you have GSA E-Mail spider ( you can find it cracked literally everywhere )

Now let's go to google dot com.

Type in the following : filetype:txt "@gmail.com" "@yahoo.com"

Now as you can see, we have tons of links with a lot of e-mails, for example this one http://www.mailfighter.net/mails.txt

This is excellent way to find worldwide emails to promote clickbank offers since they accept traffic from all over the world.

Now, let's try to find some Geo Targeted e-mails.

Type in the google the following : filetype:txt "@yahoo.co.uk" "@hotmail.co.uk"

There you go, tons of UK emails.


Do you want USA e-mails? No problemo !

Type in the following : filetype:txt "@att.net" "@comcast.com"

Okay i think you got it.

Basically the formula is : FILETYPE:TXT - will find only text documents, you can also search .csv or .xls or .xlsx but most of emails are kept in txt documents. + "@email-provider.com"
Email provider is your key for finding geo targeted e-mails. Yahoo and Hotmail have domains for all bigger countries, for example you can search yahoo.com.au for Australian emails.

For some other countries you have to find the providers in that country, for example in USA most popular ISP's are comcast, att, cableone and so on. They all offer e-mails so search for them.

To find list of ISP's in some country simple search on google for "List of ISP for XXX " xxx-country.

To find niche targeted e-mails try to add your niche after the whole phrase, for example : filetype:txt "@gmail.com" "@hotmail.com" travel


Okay, now we have emails, let's proceed on creating letters.


______________________________________________________________________

2) Creating quality e-mail letters.


Many people think that most important is to have fresh emails and good smtp, but MOST IMPORTANT thing is to write quality e-mail. Why ? To make somebody to click on your offer + to make sure your message is going to inbox and not to spam.

I will give you some main tips on how to create e-mails, basically you will have to test them out, once you get inboxed email send it.

TIPS :

1) Never put only capital letters in subject line. GET BRAND NEW APPLE IPHONE - Bad. Get Brand New Apple iPhone - Good .

2) Never put any of the following words in subject line nor repeat them in message body more than 3 times : - Free, - Credit Report - Rich, - Money, - Loan, - Payday, - Earn Money, - Credit Score, - Win, - Buy, - Sell, - Sold, - Purchase, - Act Now, - Get rid of, ...

There is a lot more words, but i can't remember any popular right now.

3) Make your e-mails in HTML, and make sure you make them in Dreamweawer to make sure they are in correct format

4) Never, BUT NEVER, put only an image in e-mail. That's going to spam 100%, you must have a lot of text !

5) If you are going to put some images in message, make sure you have a lot of text, more than 3000 bytes of text, and never add too much images.

6) Never use short urls like bitly in your messages, they are going to spam in most of times, use free dot.tk domain, you can create bitly.com shortcut to your aff link and then make dot.tk domain forward to that bitly.com link

7) In each new blast, change the url of images and links to your offers.

If i remember anything else important i will update the post.

___________________________________________________________

3) How to send them

Alright, we got emails and letter and we should send that somehow.

There is a lot of ways to send e-mails, some are free, some are cheap, some are expensive.
Currently we will stick with free ways but i will explain an expansive ways also.


You can send emails with free email providers,
-Gmail will let you send up to 500 messages per day

-Yahoo wil let you send up to 250 emails per day.

So let's do the math. 100 x Yahoo accounts - 25000 emails per day, not bad, and since you can buy 100 yahoo accounts for 5 $, it's even better ;).

You can also get trial account at Mailjet, they will let you send 250 emails per day.
You can also try your luck with Mailchimp.


Okay so how to send the emails ?

You need some mass mailing software.

I can recommend you MaxBulk mailer because it is the best in my opinion and especially because it creates automatically plain text of your html messages, and that improves your inbox rate.

Some mass mailing softwares have smtp rotation feature, so go ahead and search mass mailing on warez-bb, and choose the one you like :)

Also, to send emails via hotmail, gmail or yahoo you need smtp settings, so here they are :

Gmail:
Incoming Mail server (POP3): pop.gmail.com
Port Number: 995
Outgoing Mail server (SMTP): smtp.gmail.com
Port number: 995
The Google Gmail SMTP Server requires an encrypted connection (SSL) on port 465.


HOTMAIL:
Incoming Mail server (POP3): pop3.live.com
Port Number: 995
Outgoing Mail server (SMTP): smtp.live.com
Port number: 25
The HOTMAIL SMTP Server requires an encrypted connection (SSL) on port 995 and even on 25.


YAHOO:
Incoming Mail server (POP3): Required Yahoo!! Plus account
Port Number: Required Yahoo!! Plus account
Outgoing Mail server (SMTP): smtp.mail.yahoo.com
Port number: 587


if you want to invest some small cash, go and buy some cheap shared hosting, most of them will allow you to send 500 - 1000 emails per hour. MAYBE they will ask you to proof them that you have opt-in lists.
They will give you randomly 5 email addresses on which you send the messages recently and you can easy make them look opt-in, simply make a fake opt-in sample in this form :

#Line;First Name; Last Name; E-Mail; DateStamp; IpStamp

So if they give you for example email : johnsmith@gmail.com

You can send them the following


1235;John;Smith;johnsmith@gmail.com;05.05.2011-05:32; 21.250.69.222


And that's it :D

You can also get Hostgator for 1 cent for 1st month ;)


_______________________________________________________________________________________
4) What to promote


Easiest thing to promote is the one which can accept traffic from all countries, like dating offers or beauty and health products, you do not need to take care about geo targeting.

Also, good converting offers are the e-mail submit offers.

Simply switch the offers and networks and find the one which works best for you.






5) CAN-SPAM act and legal stuff

Since we are going to make big money, you don't want to pay 15.000 USD to USA gov because you do not respect can=spam act right ? :)


Can spam act is actually pretty easy to follow.

All in all you have to do the following :

1) Tell who are you
- You can't send emails like you are Apple CEO, you have to send emails as a : John Smith, Affiliate Marketer from Prize Rewards, or however your offer advertiser is called.

2) Include opt-out link and your information
- No you don't need to use your real info because most of advertisers will give you e-mail template, yeah their templates are crap but they have opt-out link and their company info, so you can simply use that

Here is an example :

We respect your privacy. To stop receiving messages from this sender, please follow their instructions below. To stop receiving messages from CornerCashLoan.com, please write CornerCashLoan, PO Box 707, Estero, FL 33929 or click: http://www.needitnowcashloan.com/?lc=1-2&azq=-1&nzq=9430&mzq=216638&szq=YourNetworkAffiliateIDHere&dzq=youraffiliatesubid&rzq=&udcid=1

Yep, simply copy paste that and you are safe !
And that's it, your emails are made according to can spam act and you are safe !


Okay so that's it, yep it's that simply, ofc if you want to make really big money you will need a really quality dedicated server with 50 ip addresses, ip rotation, interspiered and so on, but for the start this is just enough.



Someday maybe i will describe you how to get payday loan leads for free and earn big cash over the night ;)


Till the next tutorial,
All the best

DarioBL

Email Service Providers

https://www.atmail.com/

https://localit.com.bd/cheap-email-server-in-bangladesh.php

https://www.blackhatworld.com/seo/tutorial-how-to-set-up-your-own-linux-smtp-server-with-ip-rotation-rdns-spf-dkim.488164/

https://www.hellomails.com/

https://www.blackhatworld.com/seo/i-have-300-000-fresh-email-list-in-dating-how-to-send.512152/#post-5146569

http://www.sendblaster.com/mass-mailing-software-vs-web-based-compared-savings

https://sendgrid.com/marketing/sendgrid-services/?cvosrc=PPC.Google.sendgrid&cvo_cid=SendGrid%20-%20Global%20-%20Brand%20-%20(English)&mc=Paid%20Search&mcd=AdWords&keyword=sendgrid&network=g&matchtype=e&mobile=&content=&search=1&gclid=CPOm0PHN6NMCFdGGaAodZwIPOA

https://www.softstack.com/fstmail.html

https://www.softstack.com/advsmtp.html

1st Mass Mailer v7.0 serial number

License : 21935119410111


we help to install powermta 4.0 with interspire..where you can send 500k emails a day. We also provide video tutorial and pdf(text message) for how to install powermta and interspire. skype : email.expert

SendBlaster

Ip rotation videos:
https://www.youtube.com/watch?v=G1-kRYkhp5U