email

detect us military email address

Does anybody know which domains to search for (other than ".mil") to look for military addresses posting to a web form? Clarification: we're offering a discount to our customers, and we really only have time to cough up an email address regex which can fit into our existing system. This is on LAMP. ...

strange codes in text, like +ADs-, +AGA-, or +ACoAKg- and +ACEAIQ-

i got a dataset that uses a strange encoding for non-printables / diacritics. i'm getting hte impression that it's an artifact of some mail system. or maybe it's excel or something? anyway, the stuff i get looks like this: +ADs-, +AGA-, or +ACoAKg- and +ACEAIQ- there's more.... any idea what that this and where it comes from? google sh...

Bounced email parsing

I'm currently having a mess about with catching, parsing and sorting bounced emails. I have the basics set up nicely and it does what I want, which is nice... problem being is that there seems to be no standard to the messages returned in the bounced email. For example, some servers return the error code as specified by RFC 1893 and I c...

How to change mime type of email notifications sent by PeopleSoft?

I work near some PeopleSoft guys and they asked how to change a link in an email notification sent by PeopleSoft so that it is friendly, basically they just wanted the use of an HTML anchor. After sitting down with them and looking through the code I found that the default mime type for all email notifications is text/plain and there do...

Sending an Email Using Java

try{ Properties props = new Properties(); props.put("mail.smtp.host", "ipc-smtp.bits-pilani.ac.in"); Session sess = Session.getInstance(props, null); sess.setDebug(true); Message msg = new MimeMessage(sess); InternetAddress addressFrom = new InternetAddress("[email protected]"); msg...

Accept All Incoming Email Messages on Server

I want to write some email scanning software and don't understand how to setup my server. I have a hosted web server running Windows 2003 Server. It is running the Default SMTP Virtual Server with a fully-qualified domain name of abcdef.com (example). DNS is pointing abcdef.com to my server. If I spoof an email from my desktop pc so ...

Accepting emails from domain with wildcard subdomain

I'm setting up an app to preform mailhooks. You create an account, assign a callback url, and a pattern to match. Then you get a subdomain that you can send email to. Something like accountname.mail.appdomain.com. This is how it might work. Pattern: ^(?P\w+)-reply$ Account: accountname Callback: http://www.someotherapp.com/reply/crea...

[PHP] Whitespace in email issue

I'm experiencing a strange problem and difficult to diagnose because it's random. I have built an application that sends out an email with a nice amount of text (don't have exact char count, but could get it). On the html email, a random whitespace appears in the content. See below for examples of how the space wanders and is random: ...

Problem sending emails to yahoo and hotmail users?

I am using php and mysql. Each time an user register on my website, I will use php mail() to send a single email for authentication. Recently I found out that, a lot of yahoo and hotmail users are not activated their accounts, lets say upon 1000 users, only 200 are activated. I am curious, and I try register using my hotmail account....

Why does php's mail() want to deliver to the second specified MX record?

This is very similar to this problem: http://stackoverflow.com/questions/322659/sendmail-and-mx-records-when-mail-server-is-not-on-web-host I have a php script on an IIS server called example.org. It sends mail() to [email protected], which goes to a spam appliance and on to their Exchange server, but the mail never gets through. ...

Seemingly basic C++ question

Alright, so this is annoying the hell out of me and I'm sure its a simple thing to do. Basically, I'm working with an open source C++ client called POCO to make a email client for a class... Basically, I have a pop3 client object that retrieves emails from my email server, and then puts the emails in an object called MailMessage. Now, I...

send email from localhost

I'm try learn about email in rails. I'm developing something on localhost. Is it possible to send an email from localhost to say a normal mail account like gmail? Do I have a install a mail server? I've just got a standard rails installation at the moment for development. ...

Pairing Email Transactions and ADO.NET Transactions

Is it possible to automatically link the sending of an email (using SMTPClient) in C# with an ADO.net transaction? So given the scenario of the sending of an email failing, the ADO.NET transaction will also fail and be automatically rolled back? Cheers ...

Quitting Fasthosts and Need a Managed Email Provider

Hi guys, Fasthosts email service has been down all day so both us and our clients have been without email. Not really good news for a web development company. Even their site is down! After the fiasco the other year with them losing everyones passwords it is time for a change. Does anyone know of a good managed email reseller accoun...

Handling mail forwarding with php

I have a feature in my app that handles and parses incoming emails. The mails come in through the usual method with exim as a .forward file: | /path/to/php /path/to/mail/handler.php This sends RFC822 formatted text to my handler, which uses a parser to break it down and hand over to the rest of my app. New feature needs to be added ...

Extract URLs out of email in Python

Dear Sam Adams Thanks for your submission to ourdirectory.com URL: http://myurlok.us Please click below link to confirm your submission. http://www.ourdirectory.com/confirm.aspx?id=1247778154270076 Once we receive your comfirmation, your site will be included for process! regards, http://www.ourdirectory.com Thank you! Should be ob...

Generating an article from an email in mediawiki

I would like to be send an email to an address that mediawiki can pick up and have mediawiki take it and generate a new page from it as a starting point. More complicated stuff like categories can come later. I have searched around on the web and not found anything obvious. I have not developed against mediawiki before but am an able ...

Email Intent not showing the chooser.

I'm using the following to initiate the sending of an email: Intent i = new Intent(Intent.ACTION_SEND); i.setType("message/rfc882"); i.putExtra(Intent.EXTRA_EMAIL, new String[]{s}); startActivity(Intent.createChooser(i, "Send mail...")); The problem that I'm having is that (on my phone) it pulls up Gmail's Compose window instead of a...

Receiving Email (ActionMailer) with Rails to process image attachments

I am trying to parse an email sent to my app server. It should read the email to find the user by email then add the photo to the user's photo models Here is what I have so far. What am I doing wrong? class Mailman < ActionMailer::Base def receive(email) logger.info("Got an email about: #{email.subject}") if (@user = Us...

How to add mysites mail to whitelist?

hello friends, Currently I am developing a website.In this I have the option to send invittion.When I send the Invitation it going to spam folder.How can I send my site's mails to Inbox.Whether I nedd the trafic to add into whitelist?Or is there anyother way to make to directly send the email to Inbox.My site is developed in PHP......T...