T
T
T3R3AND2020-03-12 01:37:29
Typesetting
T3R3AND, 2020-03-12 01:37:29

How to get the sender's mail?

Tell me how can I get the sender's mail, if it is in this form

=?UTF-8?B?RnJlZS1QYXkg4oCTINCx0LjRgNC20LAg0YTRgNC40LvQsNC90YHQtdGA0L7Qsg==?= <[email protected]>

I need exactly what is inside <and >symbols.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
D
Daniil Maslov, 2019-08-03
@s0xzwasd

First, there is no adaptability.

<a href="#" class="header_logo"><img <img src="https://habrastorage.org/webt/5d/45/99/5d4599f720693601078752.png" alt="logo"></a>
error, take a closer look.
block-descr__first is a strange class name, the word "block" is present everywhere. Try to come up with more appropriate entities, such as book-description.
Using BEM notation, but there are still large nestings in the styles, for example .block-book .block-title span. According to the methodology, this should not be.
The menu does not pass the content overflow test.

W
WapSter, 2019-08-03
@ wapster92

After

* { padding: 0;
     margin: 0;
you can’t even look and it’s so clear, shit

N
nokimaro, 2020-03-12
@T3R3AND

<?php
$header_str = '=?UTF-8?B?RnJlZS1QYXkg4oCTINCx0LjRgNC20LAg0YTRgNC40LvQsNC90YHQtdGA0L7Qsg==?= <[email protected]>';

preg_match('!<([^>]+)>!', $header_str, $out);
var_dump($out[1]); //string(22) "[email protected]"

Similar questions

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question