Standard syntax for text messages sent between computer users, within the framework of "electronic mail" messages.

learn more… | top users | synonyms

0
votes
1answer
25 views

The provided value is not a valid RFC-2822 date

I have been testing BigCommerce API calls, Firstly i tried orders.json call, and i did got proper reply. But when i added date range parameters ie min_date_created and max_date_created, it gave me ...
1
vote
2answers
34 views

Email Validation RFC 2821 using Java

I am working on email Validation using java having RFC 2821 in mind. I have used following code to validate all my email address: InternetAddress emailAddr = new InternetAddress(email); ...
0
votes
0answers
43 views

Swift_RfcComplianceException on valid email address, works in Windows not in Ubuntu

I'm running into what appears to be a rather infamous issue with SwiftMailer: Fatal error: Uncaught exception ‘Swift_RfcComplianceException’ with message ‘Address in mailbox given ...
0
votes
1answer
76 views

RFC 2822 email address parsing - any good list of test cases?

I'm developing an RFC 2822 address parser (not a validator), and was wondering if anyone knew of a good list of test cases that exercises corner cases that might crop up? The specification of the ...
1
vote
0answers
142 views

Which date formats are IETF-compliant RFC 2822 timestamps?

I need to parse dates in JavaScript. The format is [2 digits day]/[2 digits month]/[4 digits year] [2 digits hour (24 mode)]:[2 digits minute] For example, 16/02/2013 21:00 But if I do new ...
0
votes
1answer
35 views

How to use RFC2822 format date in a URL?

How do I pass date in RFC2822 format, to an URL in GET method: e.g I want to pass 18th jan 2013 as min_date_created in the URL https://www.xyz.com/orders 18th jan 2013 in RFC format is ==> Fri, 18 ...
0
votes
3answers
80 views

MYSQL Date Range RFC 2822

THE SITUATION I pull timestamps formatted in RFC 2822 (Sat, 01 Dec 2012 05:49:45 +0000) and store them in a VARCHAR field in MYSQL. I have a start_date and end_date. THE GOAL Search BETWEEN two ...
1
vote
1answer
72 views

What is the “formal” name of MySQL's DATETIME format?

Does anybody know the formal name of the YYYY-MM-DD HH:MM:SS date format used by a MySQL DATETIME? Is there one? It looks close to ISO 8601, but it's different enough to break in most applications if ...
2
votes
2answers
308 views

RegEx complied with RFC 2822, 3.6.2

I am having a problem with SwiftMailer rejecting e-mails containing dots either in the beginning or ending of the address (similarly to multiple dots inside). I would like to make my app noticing ...
2
votes
2answers
124 views

Is there a good Haskell library that parses RFC2822 mail payloads?

I'm looking for a Haskell library that can parse RFC2822 email bodies to extract the content, including attachments. The only one I see is Text.ParserCombinators.Parsec.Rfc2822 from the hsemail ...
2
votes
2answers
205 views

What is the difference between RFC1123 and RFC2822 DateTime formatting in PHP?

This is out of curiosity rather than because I need to know it at this point, but in the PHP manual, they're identical; I can't see the reason that there are two different data formats for the same ...
1
vote
1answer
271 views

What are special characters in E-Mail-Headers and when to use quotes?

I'm trying to send and read e-mail using PHP. So far I found out, that I have to encode special characters using the function mb_encode_mimeheader(), But I don't have to encode spaces. I also found ...
0
votes
1answer
182 views

Current date / time to RFC 2822 date function with vb / classic asp

I am trying to write a script to push data out to an amazon s3 bucket and I need to generate what I believe is an RFC 2822 date to send in the header request. The date looks like this "Tue, 12 June ...
0
votes
1answer
155 views

PHP Mail() fails with “User <user@example.com>”, fine with “<user@example.com>”

Problem began with Magento not sending mails, and while debugging I came to this: when using PHP mail function, it fails if $to contains Name. <?php $to = '<myname@gmail.com>'; //Works ...
7
votes
2answers
644 views

Should email “Date” header be sender's local time or UTC?

I'm writing a web-based email client in Python and a question has arisen about which time zone the "Date" header of an email should be represented as when sending. RFC 2822 states in section 3.3 ...
3
votes
1answer
1k views

Is there a “no-reply” email header?

I often see automated emails postfixed with a message like Amazon: *Please note: this e-mail was sent from an address that cannot accept incoming e-mail. Please use the link above if you need to ...
2
votes
2answers
421 views

converting javascript regex to php preg_match

I'm building a contact form using PHP with jQuery validation and I wanted them both to have the same email pattern. I looked into the Validation plugin source code and found this: ...
5
votes
4answers
970 views

C# Email Regular Expression — Any out there that adhere to the RFC 2822 guidelines?

I realize that there are a ton of regex email validations, but I can't seem to find one that adheres to the RFC 2822 standard. The ones I find keep letting in junk like ..@abc.com get through. ...
2
votes
2answers
193 views

Is an email address valid that passes validation but bounces?

I use the Zend_Validate_EmailAddress to validate email addresses for my email program. It validates according to the RFC2822 - http://framework.zend.com/manual/en/zend.validate.set.html My question ...
1
vote
3answers
681 views

regex to validate a message-ID as per RFC2822

I have not found a regexp to do this. I need to validate the "Message-ID:" value from an email. It is similar to a email address validation regexp but much simpler, without most of the edge cases the ...
10
votes
2answers
3k views

Convert Python datetime to rfc 2822

I want to convert a Python datetime to a an RFC 2822 datetime. I've tried these methods to no avail: >>> from email.Utils import formatdate >>> import datetime >>> ...
0
votes
1answer
278 views

How to add a message as an attachment on another message with javax.mail

I've got a mailer daemon that check a box and fetch the mails inside every X mins. When an error occurs, I need to send a alert mail, with the faulty message as an attachment. I dont want to create a ...
7
votes
2answers
3k views

Parsing RFC 2822 date in JAVA

I need to parse an RFC 2822 string representation of a date in Java. An example string is here: Sat, 13 Mar 2010 11:29:05 -0800 It looks pretty nasty so I wanted to make sure I was doing ...
2
votes
1answer
1k views

Forcing “+0000” timezone for RFC2822 times in Ruby

How can I force the Time.rfc2822 function to spit out +0000? Ruby lets me parse RFC2822 formatted times pretty easily: require 'time' time = Time.parse('14 Aug 2009 09:28:32 +0000') puts time => ...