E-mail headers are the headers at the beginning of an e-mail that define various properties (e.g. From or Reply-To) of the e-mail.
5
votes
2answers
858 views
List-unsubscribe in e-mail header. How-to?
I'm trying to add a List-Unsubscribe header to my e-mail that is being sent. So far I hadn't any luck trying to do so.
What I have got so far:
var mailMessage = new MailMessage
{
...
3
votes
3answers
60 views
Get a mail application to recognize a Reply-To email php
I can't figure out how to get a mail application (except google mail) to recognize that an email was sent as a "Reply-To" and have those emails grouped together as one list of sent and replied emails.
...
3
votes
3answers
184 views
Force a new email thread
When writing an application that sends email based on certain events, I would like to enforce the rule that each of these emails starts a new "conversation".
Email systems such as Gmail like group ...
3
votes
4answers
2k views
PHP email header subject encoding problem
I have a problem with my php script sending email to users.
There is some problem with the encoding of the email as When the email arrives to email account the subject line($subject) has encoding ...
3
votes
2answers
812 views
Detecting Outlook autoreply/out-of-office emails
Been googling for this and haven't found anything ...
Does anybody know if there is a way, given an Outlook email item, to detect whether it was sent by the "Out Of Office Assistant"? Is there any ...
2
votes
5answers
86 views
Regex to extract Content-Type
How can extract the lines with the Content-Type info? In some mails, these headers can be in 2 or 3 or even 4 lines, depending how it was sent. This is one example:
Content-Type: text/plain;
...
2
votes
3answers
428 views
Python - email header decoding UTF-8
is there any Python module which helps to decode the various forms of encoded mail headers, mainly Subject, to simple - say - UTF-8 strings?
Here are example Subject headers from mail files that I ...
2
votes
4answers
141 views
correct email FROM header usage
I want to let users share information on my site by sending an email to a friend. Before I go to far I want to make sure I won't get blacklisted for doing something incorrectly.
If my domain is ...
2
votes
0answers
111 views
How to forward an email with the original headers?
I am writing a program that polls an incoming mailbox (to which anyone who knows about it can post), reformats the info, then forwards the mail on to the correct address according to a predefined ...
2
votes
1answer
961 views
E-Mail Header: MIME-Version: 1.0 - When should this be used?
This could be rightfully construed as a beginner's question.
Consider the following e-mail header:
MIME-Version: 1.0
My Questions:
When should use stamp an e-mail with this header?
When ...
2
votes
3answers
2k views
Add a custom variable to an email header already within a gmail inbox
this may seem odd but I was wondering if it was possible to add custom header details to emails already in an inbox. Like lets say I wish to add in the Header of the email something like - myvariable ...
2
votes
1answer
879 views
How do I determine if an email is Base64 encoded?
I am having difficulty determining if the body of a text email message is base64 encoded.
if it is then use this line of code;
making use of jython 2.2.1
dirty=base64.decodestring(dirty)
else ...
1
vote
2answers
45 views
How to identify emails sent by humans?
I am working on a project, where I need to identify emails sent by real humans as opposed to bulk mails, notifications and newsletters. Is there any definite way of doing that? Is there any ...
1
vote
0answers
29 views
Force Java MimeUtility.encodeWord to always encode
String encodedString = MimeUtility.encodeWord(myString, "utf-8", "Q");
The MimeUtility.encodeWord only encodes if a non US-ASCII character is found. For best use in a email header i want to always ...
1
vote
1answer
76 views
E-Mail in PHP, message threading, regex probably needed
I'm working on something that logs e-mail messages sent to a certain address. I have a PHP script that puts the info into MySql, which is working fine.
I need to be able to group messages based on ...
1
vote
1answer
118 views
SMTP MIME header with attachment
I am trying to create a PHP function to send an e-mail using SMTP with an attachment. I am having a hard time trying to create the MIME headers as I want the body to include text in HTM format and the ...
1
vote
1answer
171 views
Python Email Header parsing get_all()
I'm parsing mailbox files with Python and stumbled upon a strange behvior when trying to get all "To:" headers with get_all():
tos = message.get_all('to', [])
if tos:
tos = getaddresses(tos)
...
1
vote
1answer
159 views
Lotus Notes is not handling my email properly
I have a php app that sends email to the users. For most users this is just fine.
However users with Lotus Notes for their email client are recieving an email that appears to start with some of the ...
1
vote
1answer
254 views
Set the Message-ID mail header in Rails3 / ActionMailer
I would like to alter the Message-ID header that is in the header portion of an email sent from a Ruby on Rails v3 application using ActionMailer.
I am using Sendmail on localhost for mail delivery.
...
1
vote
2answers
371 views
PHPMailer: Set mailed-by Message Header
After sending an e-mail using PHPMailer to my Gmail account, after clicking 'show details,' to the right of 'mailed-by,' it says 'yourhostingaccount.com.' Here is a picture:
I've read you may ...
1
vote
3answers
911 views
Formatting VCard in PHP
I'm trying to generate a VCard via PHP, and them email it out to the user. I wrote an initial script with hard-coded data, but the end-result will fill in the VCard from MySQL.
When viewing the ...
1
vote
0answers
167 views
imap headers of a quoted mail
I'm sending an email with some xheader.
When the recipient of the email replays to that email, i want to parse it, and get the content of that xheader from the mail i get by replay.
unfortunately, ...
1
vote
1answer
512 views
How to Get Body of email from Pipe to program
I am piping an email to a program and running some code.
**
I know how to get the "From:" and the "Subject:" but how do I get only the body of the email?
**
#!/usr/bin/php -q
<?
$fd = ...
1
vote
4answers
594 views
PHP Mail Headers
Essentially what I'm trying to do is attach a file to an email I'm sending out. Simple enough, right? For some reason or another it does not like the following code (presumably because of the ...
1
vote
3answers
205 views
Method for parsing text Cc field of email header?
I have the plain text of a Cc header field that looks like so:
friend@email.com, John Smith <john.smith@email.com>,"Smith, Jane" <jane.smith@uconn.edu>
Are there any battle tested ...
1
vote
2answers
418 views
Parsing Message-ID header returned by imaplib
I'm fetching the messageid from emails in Gmail via IMAP.
This code:
messageid = m.fetch(num, '(BODY[HEADER.FIELDS (MESSAGE-ID)])')
print messageid
returns this:
[('1 (BODY[HEADER.FIELDS ...
1
vote
1answer
125 views
Sensitive information in email headers?
If the to: email is removed, is there any senstive information in an email header?
The reason I ask is because I am starting a project (like many others) to document received spam. I plan to publish ...
1
vote
1answer
232 views
Problem with Gmail messages missing headers
I'm trying to programmatically parse my Gmail for various indexing functions, and am having trouble finding certain headers that I thought were standard email headers. I'm using the Zend IMAP ...
1
vote
1answer
123 views
Additionnal header problems with php function mail with a particular server
I have an email function in php :
function send_mail($to, $from, $objet, $message) {
$entetemail = 'MIME-Version: 1.0' . "\r\n";
$entetemail .= 'Content-type: text/plain; charset=UTF-8' . ...
1
vote
2answers
220 views
send message through SMTP with guarantee ID
good day!
sorry for so "clear" question, let me explain. In my "program", i'm sending some emails, through (for example) gmail SMTP server. Let's pretend that every email, which i've sent, contains ...
1
vote
1answer
262 views
Should I use the Reply-To header when sending emails as a service to others?
Suppose we have an application that acts as a middleman, allowing Company A to send reports to their customers.
Company A --> Company B (me)--> Company A's customers
After getting the report we ...
1
vote
1answer
345 views
Problem with From field in contact form and mail() function
I've got a contact form with 3 fields and a textarea...
I use jQuery to validate it and then php to send emails.
This contact form works fine but, when I receive an email, From field isn't correct. ...
1
vote
1answer
139 views
Possibility of detecting language of email body by Email headers
Adding on one more query extending from here Detecting language of email body:
Since I want to determine the language of the email that I receive on my system, so that I can reply to the sender in ...
1
vote
1answer
1k views
Email-Headers: Sender vs. x-sender
If you want to "Send Email On Behalf
Of" someone else, should you use
the 'Sender' heading or the 'x-sender'
heading?
Outlook 2007 seems to only pay attention to the 'Sender' heading, if ...
1
vote
3answers
49 views
Optimizing mail() for company firewalls
i there.
I'm creating a newsletter for my company - the receivers will most likely be other companys employees using their company email adress.
The problem is, when I send mails using mail(), it ...
1
vote
1answer
376 views
How to identify Outlook's “Out of office” autoreply?
I'm working on a mail server that receives messages from users. I want to be able to filter Outlook's "Out of office" autoreply messages. It seems that there's no special header in those messages, so ...
0
votes
3answers
26 views
PHP email Headers - delivery option
I've added the following code to our PHP Mail app which sends out emails:
$email_header .= "Disposition-Notification-To: $from";
$email_header .= "X-Confirm-Reading-To: $from";
However, we are ...
0
votes
0answers
8 views
Email header analsis [migrated]
I have an email header which is showing the following (pseudo)
The mail purports to be from a gmail account but I'm not sure if this is the case.
Ordinarily you read the headers from the bottom up ...
0
votes
0answers
33 views
'Sent Via' PHPMailer
I am using PHPMailer class to send emails via SMTP. Everything works great.
For example sake consider the website domain is 'sender.com', the user using the website has email address 'user@user.com' ...
0
votes
1answer
29 views
PHP - Mail Headers Cause Failure
I am making a contact form. I've gotten a rudimentary version to work (gathering form info and sending an email from my site to my personal email) but I cannot seem to get the 'additional headers' to ...
0
votes
1answer
33 views
Properly folding (wraping) header lines in email
I have a PHP function to email subscriptions to users. I use the BCC so the users cannot see each other, and everything works great, with one exception: I worry about having too many emails per line ...
0
votes
1answer
66 views
Ruby custom email headers
I'm trying to send an email with custom headers but for some reason they just don't get through.
When I call my mailing method in the console, my custom parameter is actually listed:
<X-SMTPAPI: ...
0
votes
3answers
182 views
Change the sender name php mail instead of sitename@hostname.com
I am trying to send email from my php :
$to = 'it@7sisters.in';
$email_from = "info@7sisters.in";
$full_name = 'Suraj Hazarika';
$from_mail = $full_name.'<'.$email_from.'>';
...
0
votes
0answers
26 views
Behavior for missing/blank MIME email header fields
I've been debating which of two approaches is the correct behavior for MIME email headers.
Say i don't have a subject, or for some reason I can not provide the date or maybe an address. Is it more ...
0
votes
1answer
54 views
How to remove X-Source-Dir from PHP-generated mails?
Coincidentally I notice that mails sent out by a PHP script include X-AntiAbuse and X-Source headers that include details about the server and script sending these e-mails. These are useful to track ...
0
votes
2answers
23 views
How can I hide the 'to' field in the email sent by php mail
I am using php mail function to allow user to send me a mail from
website.
I am also allowing them to "cc" the email to themselves.
The whole purpose of making a "send us message" feature was not ...
0
votes
1answer
134 views
Using Return-path when sending mail through SMTP using PHP
Is there a way to set the Return-path when sending mail through authenticated SMTP using PHP?
I want bounce mails to be caught by another e-mail address than the "from" address.
I know that there is ...
0
votes
1answer
196 views
How do i specify X-Headers for outgoing emails in Microsoft Outlook 2010
I need to include custom headers in my outgoing emails.
I'm using Microsoft Outlook 2010 and SendGrid SMTP server.
In particular, i want to specify a unique tracking ID on each mail using SendGrid's ...
0
votes
2answers
207 views
WordPress: wp_mail function headers
I have a weird problem with the wp_mail function.
I would to customize the sender of the email so I am trying to set properly the headers of the email.
This is the cose I use to customize the ...
0
votes
1answer
83 views
email.header.decode_headers() throws an HeaderParseError
I'm trying to decode email Subject headers.
I'm doing this (the regex is for adding a space between the two = 's:
header = ...