email

How to send an email with C++

I'm making a program that supports email functionality within a web browser. I want it to be able to email people and I'm trying to find out how I can accomplish this using C++. Could someone please help? ...

Prevent sent emails treated as junk mails using php mail funtion

I wrote a PHP script to send emails. My script is like this: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: [email protected]' . "\r\n"; // Email Variables $toUser = "[email protected]"; // recipient $subject = "testing"; // subject $body = "<html><body>...

Looking for a real-time IMAP notification of new Emails

I'm looking for a way to monitor a GMail inbox for new e-mails. However, I want to avoid checking every few minutes and I'm looking for some sort of real-time notification. I've noticed that Outlook (and other IMAP-supporting clients) instantly show when there is a new e-mail, but unfortunately all .NET IMAP libraries seem to lack this f...

Best way to obfuscate an e-mail address on a website?

Hello all. I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was lucky enough to pick up the domain name. My e-mail address is (my first name)@(my last name).com. So really, when it comes down to guessing it,...

How to send mail using IIS 5.1 in WinXP?

I have this code to send mail: public bool SendMail(MailMessage message) { message.From = new MailAddress(AppProperties.FromMailAddress, AppProperties.FromDisplayName); SmtpClient smtp = new SmtpClient { EnableSsl = AppProperties.EnableSsl }; try { smtp.Send(message); return true; } catch (Excepti...

php and email interaction

I am working on a futur projects that will get information to a private website not from interface but from email. After some research, posterous.com is doing something interesting, posting on personal blog from email. flickr is doing the same thing with photo attached from email and post it n the server to show off My question. Where o...

"SMTP incoming data timeout" when sending email with inline images using Indy 10 in Windows XP

I'm getting the error "SMTP incoming data timeout" when I try to send an email with inline images in Windows XP, I'm using the tiburon branch of Indy 10 with the following code to send emails with inline images: MB := TIdMessageBuilderHtml.Create; try MB.PlainText.Assign(Text); MB.Html.Assign(FHTML); MB.HtmlFile...

How to get user mails in my free gmail inbox through contact us form on my website.

How to get user mails in my free gmail inbox through contact us form on my website. I do not use email with my website name . i use free gmail. I tried many script but the all need email account on domain. ...

Hebrew chars in email sent with JavaMail appears as question marks

What can be done? ...

postfix: send a copy of every email to a given email address

I have a postfix email server and there is an issue I want to debug. How can I configure it to send a copy of every email to my email (in addition to delivering the email to its intended recipients). ...

How do I test my email settings without sending a message?

As part of my app's config process, I have a sanity checker that validates all user-supplied data. This includes email server settings that the app uses to send email. I'd like a simple sanity check on those settings without actually sending any email. It'd be great if this could support all standard flavors of SMTP setups including th...

Receiving/Processing emails from .NET

I am working on a project to retrieve emails from a POP3 mailbox and save those to a database. I would like to find a way I can link original messages to replies so I can relationally show them as a chain. I was going to use subject lines those aren't going to be very reliable as they have the ability to change. Is there anything belo...

What is the best Java-based Mailing List application allowing opt-in/opt-out

I'm looking for a java-based (preferable) mailing list application that allows users to opt-in/opt-out of mailing lists. Open-source is preferable but not mandatory. This product would be used to send email notifications to subscribed people when certain events happen in another application - i.e. when a new record is saved and approv...

Can an email address contain international (non-english) characters?

If it's possible, should I accept such emails from users and what problems to expect when I will be sending mails to such addresses? ...

How can I prevent line breaks in PHP variable used as HTML email body

I've created a PHP script that takes the contents of an array and stuffs them into a variable called $body: foreach($_POST as $var => $value) { if (($var != "Submit") && ($value != "")) { $body .= $var .': '.filter_var($value, FILTER_SANITIZE_STRING) . '<br>';} } This $body then forms the body of an HTML email. All is fine until ...

Linux postfix won't send to local domain

Hi there, I think the crux of this issue is that I'm a postfix neophyte, but here goes. I'm using postfix's sendmail on a 1&1 VPS account to post messages from a webserver (through PHP; contact forms, password resets, etc.). It's working fine, except mail cannot be sent to the local domain. That is, if the host is example.com, any mess...

Inputing into other programs [C/C++]

So I have a C program that runs on the Windows Platform that periodically sends emails of log files , it is supposed to run in the background with no interference. I don't want to make the email address a constant. What are some ways to input an email address into this program? I was thinking of a simple script that just takes paramete...

Is there any advanced open source pop3 class for php ?

Hi All I am looking for an advanced open source pop3 class for php. For outgoing mails im using phpmailer, and i need pop3 class to handle incoming mails(read, delete. decode). Thanks for reading and your help would be highly appreciated ...

What is the best and safest way to store user email addresses in the database?

From security reasons, is it worth encrypting user emails before putting them into the database? I know we hash and salt passwords but that's another story as we do not really need password originals. With emails it is different. Knowing that the decryption key will anyway be somewhere close to the database, does it make sense to encry...

What's a good theoretical MAX_SIZE when managing email attachments?

I'm working on a part of a website where I generate PDFs, attach them to an email and send it off. Right now I am not tracking the current sum of the sizes of all the PDFs to be attached to the email, but I suspect at one point that I should. My question boils down to: What is a good theoretical *MAX_SIZE* that you should go by when ma...