I need bulk sms, bulk smtp and tututorials for website developing
Thanks.
Posts Tagged smtp
We have a windows application product in VB.NET. In that product required SMS sending functionality.
To send SMS we are using SMTP protocol. After sending the SMS using SMTP protocol, the message is not displaying properly in the receiving side.
We required a sample application in VB.NET/C#.NET to send SMS to any US number for free of cost using SMTP protocol or any thing else.
Knowledge person create the sample application and send it to us for review. The amount will be paid after we test the application to make sure it is working with various mobile companies numbers in the US
I tried Everything and my apps emails keeps going to spam when I check it with outlook. In GMAIL its fine and it doesnt go to spam but on outlook it goes to spam.
I need someone to write me an app that sends an email using gmail smtp. then send it to me so I try it. If it sends me and in outlook it doesnt go to spam. I will pay you for the source code.
This is my current code:
public void SendEmail()
{
string sBody = "";
string sSubject = "";
sBody += "Dear Hiring Manager,<br/><br/>";
sSubject = "Responding to Job:
ExecuteHtmlSendMail("from<at>gmail.com", "to<at>gmail.com", sBody, sSubject);
}
public void ExecuteHtmlSendMail(string FromAddress, string ToAddress, string BodyText, string Subject){
MailMessage mailMsg = new MailMessage();
mailMsg.From = new MailAddress(FromAddress);
mailMsg.To.Add(new MailAddress(ToAddress));
mailMsg.Subject = Subject;
mailMsg.BodyEncoding = System.Text.Encoding.GetEncoding("utf-8");
System.Net.Mail.AlternateView plainView = System.Net.Mail.AlternateView.CreateAlternateViewFromString
(System.Text.RegularExpressions.Regex.Replace(BodyText, @"<(.|n)*?>", string.Empty), null, "text/plain");
System.Net.Mail.AlternateView htmlView = System.Net.Mail.AlternateView.CreateAlternateViewFromString(BodyText, null, "text/html");
mailMsg.AlternateViews.Add(plainView);
mailMsg.AlternateViews.Add(htmlView);
// Smtp configuration
SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.Credentials = new System.Net.NetworkCredential("something<at>gmail.com", "mypassword");
smtp.EnableSsl = true;
smtp.Send(mailMsg);
}
Looking for a developer to modify Interspire Email Marketer
We currently have multiple installations of IEM but its hard to manage
Want to move to one IEM using multiple domains/smtp/ip per campaign
All references to domain/smtp/ip in emails headers and body to refer to one domain/smtp/ip
When importing contacts into lists check for duplicate emails across all lists
Specify sending days/hours and have sending suspend/resume automatically outside those hours
Fix problem with dynamic content – when we try to setup dynamic content IEM crashes out
Monitor health of domain/smptp/ip on rbl etc during sending
Handle unsubscribes from people who reply to the email saying unsubscribe in the subject or body etc instead of clicking the unsubscribe link.
Please explain your experience on IEM, jobs you have done, suggest other modifications we might want to make.
Ive setup a postfix server with virtual users stored in mysql to migrate an old qmailserver to it. What remains is to make sure that procmail filtering(migrates from maildrop filters) can be used for the user who have filter files, and also make sure the smtp authentication works as it should with the same account info as imap/pop.
Imap and pop is already working and also the virtual users.
The following tasks need to be perfomed and documented:
– smtp authentication
– procmail per user filtering
– setup some mysqlbased autoresponder(yaa!?) or preferably something working with postfixadmin
– security overview of the server before going in production
– document all the steps needed to repeat the server installation on a fresh debian install
Previous experience and rated projects is a must, please only use the bidding system. Clear communication skills are expected and good work may result in future ongoing work in the same area.
To distinguish your bid from others, relate to your previous experience and mention a few things worth to consider. Any single-line-pm-request-bids will be ignored.
Hotmail Email Validation
Jan 16
I want a program that I can give a Hotmail or MSN email addresses to, and the program will output the email address and a good/bad flag indicating whether it is a valid email address or not.
SMTP can NOT be used to verify the email. I need to validate thousands of email addresses, and Hotmail will block SMTP transactions after you do too many without sending a message.
The deliverable will be the program with source code and an explanation of what API methods were used.
I will award the project to someone who has a working prototype or can prove that they know how to do it.
When setting up a campaign in interspire it should allow you to enter
a list of domains and ips in the following format:
192.168.100.1:domain1.com
192.168.100.2:domain2.com
192.168.100.3:domain3.com
192.168.100.4:domain4.com
It should also allow you to enter an amount of emails (example: 1000)
to send before switching to the next ip/domain in the cycle.
If a domain has been entered that does not exist in the group MTA
settings, it should be configured.
It should create a DNS zone for the domain with records for each ip
address on the NIC like so:
domain2.com points to 192.168.100.2
smtp1.domain2.com points to 192.168.100.1
smtp2.domain2.com points to 192.168.100.2
smtp3.domain2.com points to 192.168.100.3
smtp4.domain2.com points to 192.168.100.4
domain2.com (the new domain) should also have a www directory for
hosting a webpage
domain2.com and each subdomain (smtp1 etc..) should each have 9 mailboxes:
safe,sender,bounce,bounces,mail,postmaster,contact,abuse,hostmaster
Next, it should create settings for the new domain in the /etc/pmta/config file.
We can use comments for the script to be able to tell where to add the settings:
#settings1_start
<smtp-user m1>
password sample
source {m1-auth}
</smtp-user>
<source {m1-auth}>
smtp-service yes # allow SMTP service
always-allow-relaying yes # allow feeding from 127.0.0.1
require-auth true
process-x-virtual-mta yes
default-virtual-mta vmta-m1
remove-received-headers true
add-received-header false
hide-message-source true
</source>
<smtp-user m2>
password sample
source {m2-auth}
</smtp-user>
<source {m2-auth}>
smtp-service yes # allow SMTP service
always-allow-relaying yes # allow feeding from 127.0.0.1
require-auth true
process-x-virtual-mta yes
default-virtual-mta vmta-m2
remove-received-headers true
add-received-header false
hide-message-source true
</source>
#settings1_end
#settings2_start
<virtual-mta vmta-m1>
smtp-source-host 184.154.11.162 smtp1.leenoodle.com
#Verify you have the Private Key: /etc/dkim.key
domain-key k1,*,/etc/dkim.key
</virtual-mta>
<domain leenoodle.com>
route [127.0.0.1]:25
</domain>
<domain smtp1.leenoodle.com>
route [127.0.0.1]:25
</domain>
<virtual-mta vmta-m2>
smtp-source-host 184.154.11.163 smtp2.debtprompt.com
#Verify you have the Private Key: /etc/dkim.key
domain-key k1,*,/etc/dkim.key
</virtual-mta>
<domain smtp2.debtprompt.com>
route [127.0.0.1]:25
</domain>
#settings2_end
And then finally it should run the command "pmta reload" and then add
the new MTA settings into interspire.
I run several servers at the same time so this should be able to command them all, please bid only if youve worked on something like this.
In search of professional bulk emailer with experience with Send-Safe Mailer v. 2.5
Must provide step-by-step instructions for setting up the program with SMTP Servers and Multiple SMTP Accounts.
Must also be able to send from multiple IPs and have experience creating Custom Headers.
Please only bid if you have worked with Send-Safe Mailer.
Payment will be made in full once we are able to verify the program is sending the emails properly,
I have a windows 2003 server (dedicated server) hosted at godaddy. I need a network security expert to keep out intruders. My smtp relays have been hijacked. I have people coming in and using 5000 smtp relays in about 30 seconds. I need someone who really understands security and can lock down my server to keep it safe. I have only one website running classic asp with microsoft access database.
I also need to do a 301 permanent redirect from nonwww domain to www domain
I need install and setup a mta-smtp server on a fresh server (i can put on windows or linux as freelance request)
Prefer postfix in multi-instance mode, with this schema
master postfix: receive all email, dkim sign, route to instances based on some postfix rules and limits
/ |
child postfix instances (each instance bind to one ip address): limits per domain, send to random mx
This smtp will be setup for send 100k emails per hour without be marked as spammer
You must have a reliable SMTP server CAN SPAM compliant for send emails without be marked as spammer
Setup Dkim on server level (at dns domains i will do)
it will use for send emails from 10 domains
Additional i need an email address validation application for validate address without be market the ips and domain as spam
thanks
Ive pretty much got everything setup but cant put the pieces together. Heres what I have so far:
A dedicated server running Windows Server 2008 (could be 2007 not sure)
Interspire autoresponder software installed on the apache server
IIS 7.0 installed with gui manager (I tried adding a test smtp server but no luck)
I really dont know where to go from here, like how to setup my domain dns or mx records, how to properly setup the server in IIS manager and then optimizing the server.
This mail server will be used for an email list of about 30,000 people 1-2 times a month.
I just need someone to log in and set this all up in IIS for me.
SMTP Server
Dec 21
I looking SMTP Server that can provide me with 95% inbox results. Ability to send 100-200K per day without being block.
Please send me SMTP details ,
Monthly rental will be around from 20 usd to 50 usd depends upon the speed of sending mails/hour.
Need open smtp server for marketing
to do email campaign
Smtp Server Require
Dec 14
Hi ,
I looking SMTP Server witch can provide me send bulk mail and need to have white list so my mail will not go to spam .
please send me SMTP details ,
monthly rental will be around from 20 usd to 50 usd depends upon the speed of sending mails/hour.
Happy bidding
Thanks
Vino
Delphi XE SMTP Service
Dec 12
Using Delphi XE and Indy 10 program a SMTP Service application that will "smart host" internal emails to gmail and att SMTP servers
We are looking for someone who can drop email campaigns for us.
We require a white listed SMTP relay service
I want SMTP server or Web Accessed Bulk Email Sending Server to do this.
Servers must have good performance and 24/7 working- and IPS must not be blacklisted.
If your server can not deliver high in-box rates, you must refund the money 100%
Please bid the cost to send 1, 5, 10 , 25k emails per week to start
You must provide:
– Email distribution
– Unsubscription / Subscription services
– Reports
– RELIABILITY!
I will want to see a trail run of 1Ok emails SO BID ON FIRST PROJECT 10K EMAILS
WE WILL PROVIDE ALL EMAILS!!
SMTP Server Relays
Dec 6
Hey Everyone. Im looking for someone whos got whitelisted SMTP Server Relays available. Ive already got the emails ending software, I just need the relays. Im looking for at least 100,000 Relays per day. This is an ongoing project, so let me know how we can work together. Please quote me a price for 100,000 relays over 30 days, so a total of 3 Million
Thanks
Good morning sir
we want to market our product www.ultimatefairness.com from by email marketing so we need bulk smtp relay we will pay u rental monthly
monthly rental will be around from 10 usd to 20 usd/month depends upon the speed of sending mails/hour
price may increse ior decrese depends upon the mail speed we want the highest spped number of mails/hr
if service really good we will pay one year advance also.
we want smtp details as: server name, user name, and password as we want to use these details in one email software.
waiting for ur reply bcoz we need urgently
so plz quote the speed of mailsper hour and ur price
thanks
from
namratha
customer support
www.ultimatefairness.com
Bulk External Smtp Required
Nov 23
Good morning sir
we want to market our product www.ultimatefairness.com from by email marketing so we need bulk smtp relay we will pay u rental monthly
monthly rental will be around from 10 usd to 40 usd depends upon the speed of sending mails/hour
if service really good we will pay one year advance also.
we want smtp details as: server name, user name, and password as we want to use these details in one email software.
waiting for ur reply bcoz we need urgently
thanks
from
namratha
customer support
www.ultimatefairness.com
SMTP Mass Mailing System
Nov 23
I require a non-blacklisted SMTP relay service that can deliver up to 5 million emails per month, with average send groups of about 200-400K per day on days which I mail.
I want SMTP server or Web Accessed Bulk Email Sending Server to do this.
Servers must have good performance and 24/7 working- and IPS must not be blacklisted.
They must be able to handle heavy e-mail traffic for heavy load task
If your server can not deliver high in-box rates, you must refund the money 100%
Please bid the cost to send 5 million emails per month
I would like to be able to conduct an Initial test (50K mails) sent once and tracked for results.
I will provide lists and email content.
You must provide:
– Email distribution
– Unsubscription / Subscription services
– Reports
– RELIABILITY!
Serious bidders only please.
Bulk Email Marketing
Nov 16
We are looking for someone who can drop email campaigns for us.
We require a white listed SMTP relay service
I want SMTP server or Web Accessed Bulk Email Sending Server to do this.
Servers must have good performance and 24/7 working- and IPS must not be blacklisted.
If your server can not deliver high in-box rates, you must refund the money 100%
Please bid the cost to send 1, 5, 10 , 25k emails per week to start
You must provide:
– Email distribution
– Unsubscription / Subscription services
– Reports
– RELIABILITY!
I will want to see a trail run of 1Ok emails SO BID ON FIRST PROJECT 10K EMAILS
WE WILL PROVIDE ALL EMAILS!!
SMTP relay service needed to send out 5 million emails per month. Must be not blacklisted.
I need freelancer to install SMTP Authentication and TLS support to my Debian 5.0 server. There is ISPConfig 3 already installed.
Advanced Php MassMail Sender
Nov 10
We are look for an already made php mail sender that will match for our requirements because we dont have a big budget for this task. So who is already have this php mail sender can bid and message me with a link with a demo so i can test it.
This php mail sender must be able to:
1. SEND USING SOCKS AND PROXY (for all methods – direct send, smtp send)
2. SEND USING MULTIPLE SMTP (i need to be able to add multiple smtp servers with auth and sender must send random e-mails with each smtp server until finish the task).
3. SENDING FROM MULTIPLE SENDERS.
4. SENDING WITH MULTIPLE SUBJECTS.
5. SENDING WITH MULTIPLE HTML NEWSLETTERS.
This will be all i need from an php e-mail sender. Waiting for your offers.
We are looking for a company that can provide us use of a "NON-Blacklisted server that we can use for an ongoing email program.
We will require 1,000 email addresses (and eventually 10,000 addresses) that MUST each
We need 1000 smtp accounts and addresses. Either request1 to request1000 or replies1 to replies1000 but they need to do be REAL FULL SMTP accounts. The only major difference is we dont want them storing any email, rather we want all 1000 smtp accounts to forward all of their incoming email to replies(at)whatever. That way, we dont have to worry about the inbox size of 1000 accounts.
1 account keeps all emails from the 1000, and all 1001 accounts are real and SMTP accounts and each has the same login password.
We also require these emails to be setup with reverse DNS so that the emails show they are coming from our domain, not your (very important)
This is required for work we are going with another website and is required urgently.
Thanks.
I have just purchased Sendblaster-2, a bulk email sending software. Here is their website ((www.sendblaster.com)).
In order to be able to use it, I need to enter an SMTP Server address.
So, I need one.
Ill pay $600 per year; $50 every month.
IMPORTANT: I will NOT pay for the whole year in advance; Ill pay month by month.