About 50 results
Open links in new tab
  1. What's the difference between Sender, From and Return-Path?

    What's the difference between an email Sender, From and Return-Path value? Example: I have a contact form where the user can input their email, would this be assigned to sender, from or return …

  2. c# - Microsoft Graph, get emails filtered by sender and ordered by ...

    Sep 4, 2023 · Microsoft Graph, get emails filtered by sender and ordered by reception date: ODataError Ask Question Asked 2 years, 6 months ago Modified 2 years, 6 months ago

  3. c# - MAUI: How to bind Event Properties (sender, EventArgs) in code ...

    Jan 5, 2024 · MAUI: How to bind Event Properties (sender, EventArgs) in code; binding to ViewModel or Code Behind Ask Question Asked 2 years, 2 months ago Modified 2 years, 2 months ago

  4. How can I get the sender email address using Outlook.MailItem in …

    Jun 23, 2014 · 0 In C# you can access the sender's email address using the property of the Outlook MailItem. It returns a string object. VB.net should be similar.

  5. Error pulling sender name and body content from Outlook using Excel …

    Jul 15, 2025 · This Excel VBA code pulls data from Outlook. I want, time received, sender, subject and body content. The sender and body content ws.Range ("B" & r).Value = OutMail.SenderName …

  6. How to get sender widget with a signal/slot mechanism?

    Jul 27, 2023 · It's possible to bind more than one signal to one slot (isn't?). So, is there a way to understand which widget sends the signal? I'm looking for something like sender argument of events …

  7. email - What is the behavior difference between return-path, reply-to ...

    This records the actual Return-Path sender during the SMTP session. If a Return-Path header already exists in the message, then that header is removed and replaced by the recipient's mail server. All …

  8. What is the use of "object sender" and "EventArgs e" parameters?

    May 25, 2021 · In case of Page_Load, Init and other page events, what is the use of these (object sender, EventArgs e) parameters? Examples would be more helpful.

  9. 550 5.7.1 Client does not have permissions to send as this sender ...

    550 5.7.1 Client does not have permissions to send as this sender I have gone through many forums that told me to set send as permission for the mailbox but I m not able to find any such configuration …

  10. Get the text value of the button that was clicked - Stack Overflow

    Oct 23, 2015 · I am trying to get the text value from a button that was clicked. In my head, it looks something like this: private void button2_Click(object sender, EventArgs e) { string s = thisbutton.text }