email-headers Questions
5
Solved
Here's an example email header,
header = """
From: Media Temple user ([email protected])
Subject: article: A sample header
Date: January 25, 2011 3:30:58 PM PDT
To: [email protected]
Ret...
Boiling asked 14/5, 2015 at 14:38
1
With the Gmail API, if you do not provide a FROM header, the FROM header is set to the sender's email address. If I set the FROM header to any of the following forms, Gmail displays a phishing warn...
Campanula asked 23/8, 2020 at 16:36
2
Mail user agents usually display threads of Emails by chaining messages together according to the In-Reply-To and References header fields that contain the Message-IDs of other messages. Although a...
Camise asked 5/4, 2016 at 22:23
2
When any email is send with a Message-ID header, then any replies to it include In-Reply-To, naming that ID, and References which can name a list of parent message ID's.
So email clients can use th...
Landreth asked 15/8, 2017 at 9:40
3
I have a client which sends email using the smtp protocol. The client can be configured against any mail server which supports smtp (for example: gmail, yahoo).
Now, while sending the mail from cl...
Cyclopedia asked 5/4, 2011 at 16:23
2
I am setting up a small online business and have used wix.com to create a website.
I created some email triggers using the websites automations which send the emails on behalf of my email domain us...
Shipwright asked 8/2, 2021 at 12:27
2
Solved
Some mail clients, don't set the References headers, but Thread-Index.
Is there a way to parse this header in Python?
Related: How does the email header field 'thread-index' work?
Mail 1...
Sumerian asked 9/12, 2014 at 8:9
4
Solved
I am not able to send email through PHP mail function while I specify an array of $headers as
$headers = array (
'From' => "[email protected]",
'Content-type' => "text/html;charset=UT...
Herve asked 15/12, 2014 at 6:11
4
I'd like to decode this string:
X-OVH-SPAMCAUSE: gggruggvucftvghtrhhoucdtuddrfeelgedrvdduucetufdoteggodetrfdotffvucfrrhhofhhilhgvmecuqfggjfenuceurghilhhouhhtmecufedttdenucgohfhorhgsihguuggvnhfjughr...
Francisfrancisca asked 6/1, 2017 at 13:47
4
Solved
I've got a PHP script that my mail server is piping emails to via STDIN. Is there a straightforward/non-convoluted way to take a raw email string and send/forward/relay it to a specific email addre...
Worthwhile asked 9/7, 2011 at 2:52
5
Solved
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 send...
Mourant asked 18/1, 2011 at 19:54
3
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
{
Subject = news...
Vickers asked 6/12, 2010 at 11:22
6
Solved
I'm using pythons imaplib to connect to my gmail account. I want to retrieve the top 15 messages (unread or read, it doesn't matter) and display just the subjects and sender name (or address) but d...
Quiteria asked 6/9, 2011 at 4:29
1
Solved
Just curious if the email headers are marked by Gmail to denote if the email was scheduled vs sent right away.
Cisalpine asked 2/9, 2020 at 23:54
7
Solved
Is there a way, given an Outlook email item, to detect whether it was sent by the "Out Of Office Assistant"?
Is there any property that Outlook sets on the object, or any header informati...
Guadalajara asked 22/6, 2009 at 14:4
9
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 ...
Especially asked 7/9, 2011 at 9:10
1
It seems like most popular email clients don't include the X-Mailer header. Is there any good method to determine if an email was sent by a popular client, such as Gmail, Outlook or Apple Mail?
Holley asked 2/7, 2014 at 21:34
3
Solved
If there is no access to php.ini (assume php -v >= 5.3 & mail.add_x_header = 1), or a way to patch mail, is there a way to change the X-Php-Originating-Script header when using php's mail() fun...
Uzia asked 15/3, 2013 at 6:47
3
So using the gmail message source is it possible to generate, a link to the message/thread in GMail's own interface?
on http://productforums.google.com/forum/#!topic/gmail/goChl1gG0NQ they use the...
Diffusive asked 30/5, 2013 at 3:32
1
I am playing around with the python mailjet api, and found that I can set the sender's name so instead of emails showing up from "Info" ([email protected]) I can have them show up from "Carlos...
Kaminsky asked 27/10, 2017 at 2:48
1
Solved
I'm looking to filter the email headers of the new order form in woocommerce. I'm trying to replace the customer email address with the main site admin email address. We need to do this because Gma...
Subsequence asked 8/3, 2018 at 11:4
3
The standard way to format the 'From' email header is
From: John Doe <[email protected]>
But what to do if there's a comma in the name?
From: John Doe, chief bottle washer <[emai...
Developing asked 21/3, 2013 at 18:40
2
Solved
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.decodebytes(dirty)
else con...
Helium asked 28/11, 2008 at 2:30
2
Solved
I came across this interesting header:
Content-Type: charset=utf-8
Set HTTP header to UTF-8 using PHP
The answerer says that this syntax is defined by RFC 2616, but I am not
seeing it in the pr...
Concurrence asked 2/2, 2017 at 4:11
6
Solved
I am trying to send email from my php :
$to = '[email protected]';
$email_from = "[email protected]";
$full_name = 'Suraj Hazarika';
$from_mail = $full_name.'<'.$email_from.'>'...
Backstop asked 3/12, 2011 at 5:29
1 Next >
© 2022 - 2024 — McMap. All rights reserved.