email

How to collect user opinions about software

I have written a small .net Windows Forms application. And now I decided to get opinions or comments from users. User will just write something in a input form and click a send button. I want to use the most easiest way. I don't want to host any webservices or another applications for gathering the information. Also I don't have a data...

Specifying the bounce-back address for email

I'm having a problem getting emails to bounce to a specific email address, different to the From address. A particular client requires that we send emails from a specific email address (call it [email protected]). Our Exchange admins have created an account on the Exchange box so that we can log in and send from that address. ...

MailMessage, difference between Sender and From properties

I've been using the System.Net namespace ever since we switched from .net Framework 1.1 to the 3.5 framework, but there's one thing that's been puzzling me since. What's the difference between the Sender and the From properties in the MailMessage class? Are they both the same, and if not is there a reason to use Sender together with Fr...

Rails Actionmailer Handling of Failed Messages

Hi, I'm using rails 2.2.2 on a linux box and am using a rake task to send some emails. It's a very simple script without error handling: 1.) Get emails to send 2.) Send email 3.) Mark emails as sent Right now, the port on the smtp server has been blocked temporarily so steps 1 and 3 are completing but not step 2. My question is, wh...

Do AppleScripts invoked by Mail filters have access to the e-mail(s) that matched the filter?

I’m setting up a filter in Mail on OS X that calls an AppleScript whenever an e-mail sent to a specific e-mail address arrives. Will the AppleScript get passed/have access to any of the e-mail’s properties? I’d like it to take different actions based on the “from” e-mail address. ...

Linq Grouping query

public class Mailing { public string To { get; set; } public string AttachmentPath { get; set; } public int AttachmentCount { get; set; } } giving this structure i have a IList<Mailing> mailingList where To has dups and the AttachmentPath is unique per To. i need to send emails to the mailingList where each unique To has m...

How does this RegEx for parsing emails work in PHP?

Okay, I have the following PHP code to extract an email address of the following two forms: Random Stranger <[email protected]> [email protected] Here is the PHP code: // The first example $sender = "Random Stranger <[email protected]>"; $pattern = '/([\w_-]*@[\w-\.]*)|.*<([\w_-]*@[\w-\.]*)>/'; preg_match($pattern,$sender,$matches,PRE...

How do websites send email when new answers is posted to question

How do websites send email when new answers is posted to question like if you answer this question, I will get automated email that my question has an answer? ...

Email to be sent out from a dedicated server with different IP

We have three domains hosted on one dedicated server each with its own dedicated IP. Domain A - Has the server primary IP address (default server IP) Domain B - Has its own IP address Domain C - has its own IP address If an email goes out from Domain B then it uses the Domain A IP address in outgoing and this makes emails from Domain ...

E-Mails sent from online form are coming in one single mail

I'm using an online form at one of my web sites. Every mail sent from this form is coming in one mail even if the senders IP is different. But I want every single mail to be unique even if the content is same. What I need to do to the mails or which header I need to modify? SmtpClient smtpClient = new SmtpClient(); MailMessage message ...

MFMailComposeViewController and cancelling "save" action sheet?

i am using MFMailComposeViewController inside my iphone app. I notice that if i enter any text in the body and then press the cancel button, i am prompted with an action sheet with an option to save/don't save the unsent message. I have two questions: can I programmatically prevent the "save/don't save action sheet from appearing? MFMa...

How can I send a confirmation email to users of my application?

Hi I have designed a chat application where different users can create the account, but I do not know how to send a confirmation email to the users. Since I collect their e-mail address in the registration form, how can I send mail to those addresses in Java? ...

possible to make text messaging with php have a constant "telephone number" value?

hello, i have an iphone 3g and can successfully send text messages using the PHP mail() function. My issue is that for each message i receive, the "telephone number" associated with the incoming text message changes each time. If possible, I would like to somehow make this number constant so that I can take advantage of iphone's abilit...

.Net Windows Service to monitor mailbox

Hi there, I need to create a .Net windows service to monitor a mailbox and process attachments (if found) on the emails and then delete the email from the server. I have two questions I'd like your thoughts on: POP3 or IMAP to connect to the mail server? Which POP3/IMAP library should I use. At this stage we're just doing a proof of ...

What does the following SPF record allow?

v=spf1 ip4:211.121.22.56 a mx a:server.hostname.com ~all My understanding is it allows the following to send out emails: ip4: 211.121.22.56 a: A record (where website is hosted) mx: whatever the MX record says a: this server name And nothing other than the above 4 places Am I correct? ...

Help on how facebook reply by mail works

We are working on a school project and we need to reply to an email and keep just the last message without the historic of the conversation. It's something like what Facebook did for the reply to comments via email : http://blog.facebook.com/blog.php?post=206480947130 Our problem is to keep the last message without the signature or any...

Parsing through email in Ruby using Action Mailer

I retrieve mail using net/pop , but I also need to parse through the email to obtain subject,from address and email body. Any ideas with Action Mailer? I'm supposed to use 3rd party gems.(No,not even Tmail) require 'rubygems' require 'net/pop' require 'pop_ssl' Net::POP3.enable_ssl(OpenSSL::SSL::VERIFY_NONE) def pull_mail Net::PO...

Unique identifier for an email

I am writing a C# application which allows users to store emails in a MS SQL Server database. Many times, multiple users will be copied on an email from a customer. If they all try to add the same email to the database, I want to make sure that the email is only added once. MD5 springs to mind as a way to do this. I don't need to worry ...

Is there a way to serialize a .Net MailMessage object

I am trying to write a proc that will take in as a parameter a MailMessage object, and the split it apart to store the subject, body, to addresses, from address, and attachments (the hard part) in a database so the email can be sent at some point in the future. My first take on this was to rip out the parts I need and store them in a da...

Mail being sent to local domain instead of remote domain

I have a server which hosts mywebsite.com If I try to send mail to [email protected], the MTA is trying to send it to a local host (the mail is managed on a different server). How can I fix this?! Its a linux server running qmail Any more info needed please ask Thanks! ...