I want to develop a system with which users interact by sending in email. Very much like most email discussion groups or like posterous.
What checks should I apply to incoming email to make sure it comes from the address it claims to be?
...
Hi guys,
I have a php script set up to generate emails. Currently, they give the success message but don't actually send the email.
I just had a look in the php configuration settings file, and I noticed this:
[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
Is this where I change the SMTP to the address I need th...
I designed a small website last year in visual web developer. I added a small facility using smtp class, basically it allows people to write comments in a text box and once clicked "send" it sends me an email of whatever they typed.
I am now using cPanel, and there is no .net support from what I can see (I am not using a dedicated serve...
I'm modifying the Coldfusion-based interface for a listserv admin application to show snippits of recently-posted messages on a page. The messages are all stored in a SQL Server 2005 database on the listserv's mail server, and in theory it should be easy enough to query the recent ones and display them. However, the "message" column of t...
Indy is not enough for me, it must support SSL and be rock solid, can be commercial also
...
What would be a good starting point for me to learn about creating an email server?
Basically, what I want to do is have a server (such as foo.com) recieving mail for me so if I send an email to ([email protected]) it will dump the contents of the email into /mail/blah/subject and then send it off to my REAL email account.
I'm looking to do...
Hy,
I have a c# program that sends emails with GMail SMTP server and I want to make a service or something running behind that sends this emails every 5 minutes.
Does anyone have any idea how can I make this with c# and asp.net?
...
I am using windows XP S2. I am sending email by using IIS SMTP. Now the problem I am facing is with SMTP server. All the mails I am sending are storing in SMTP Queue folder but its not sending them to the respective domains. I think that there is some SMTP setting problems, I need to configure SMTP. One more thing that I dont have any re...
Is it possible to build a SMTP/IMAP client that can run in the browser that uses only Javascript?
...
I have a Perl script that prints multiple lines of output to screen. I need to capture those lines and either pipe them into a single piece of email ( /bin/mail ) or into a text file that I can send by /bin mail in another operation. Actually, I have already figured out the easy (dumb) way whereby I use a bash wrapper to do the mailing b...
I am using gmail smtp to send emails from my website, but i noticed that some emails are dropped. I use Zend_Mail. Everything works as it supposed to for most of the emails, but if an email's subject/body is somewhat questionable, then it might not be sent. For example:
If I try to send emails like this:
Subject (asdjkasdf kasdjf kdfas...
My site's SMTP had been exploited by spammers. Since then, all mail to GMail addresses is being bounced with the following message:
550-5.7.1 Our system has detected an unusual rate of
550-5.7.1 unsolicited mail originating from your IP address. To protect our
550-5.7.1 users from spam, mail sent from your IP address has been blocked....
Can Javascript be used to connect with a server with a protocol other than HTTP or FILE? Ideally, I would like to connect to an SMTP server using Javascript.
...
I'm interested in writing a SMTP mail server that just sends emails? I would be writing this in C# as a stand alone application. So if anyone can point me in the right direction or explain how an SMTP actualy sends out emails that would be great.
...
I have two questions.
First one is simple: Is there any way to control priority of mails while sending those in ASP.NET? For example i have a dating website and there are few types of mails send. One is registration mail and other are less important like new message in inbox for those who want this information. There are many users on w...
Hi all,
I am trying to build a email marketing service company. I am a .net programmer and I have played around trying to build a custom SMTP server but a lot of problems came up when domain keys into play.
I am on the next step where I am looking for a professional that I could implement with .Net to send emails. It should provide full...
I have a sendmail funciton that works for one recipient. If I pass something like "[email protected];[email protected]" in ToEmail then I get an error that says ; not allowed in message header. What am I doing wrong?
Here is my SendMail function:
Public Function SendMail(ByVal ToEmail As String, ByVal FromEmail As String, ByVal Subject As...
I have an asp.net 4.0 web site that generates email alerts based on several different events throughout the site. I use the following code in a Utility.cs class that lives in my App_Code folder. Subject, body, and mailto are parameters being passed into the method.
try
{
var mailmessage = new MailMessage();
mailmessage.From("a...
I am developing a simple webmail client for IMAP-based email services using PHP's IMAP library, and I was wondering if there was any way to specify the SMTP server to use when sending an outgoing message, so that the message will be placed in the user's Sent mailbox when they are logged into their IMAP account. I saw that their is an ima...
Hello all,
I wish to either make use of a freely available email validator (software, script or online service). If this does not exist, are there some free PHP classes that I can make use of to validate email addresses?
I have about 100 emails and before I send to these emails I would like to check their validity. I don't want my ser...