email

How do I popup the compose / create mail dialog using the user's default email client?

The use case is simple. At a certain point of time, I need to be able to show the user his familiar compose email dialog (Outlook or other) with fields like from, to, Subject already filled up with certain application determined values. The email would also have an attachment along with it. The mail should not be sent unless the use...

Sending form without mail client

Hi,everubody! can you help me with my trouble? I'm trying to create form for filling resume. User should not use mail client to submit form. How can I realize this idea on javascript or PHP? ...

What is the correct regular expression for an email address?

Duplicate: http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses There seem to be an awful lot of different variants on this on the web and was wondering if there is a definitive answer? Preferably using the .net (Regex) dialog of regular expressions. ...

Accessing internal network resource using external IP address

How is it possible to access an internal resource (email server / FTP server) using its external IP address but from within the network ? The situation is that a number of users have laptops and work out of the office several days per week. I don't want them to have to change the connection details from 217.x.x.x to 10.0.0.x every time ...

How do I send an Email with no "to" address using Mail::Sender?

Is it possible to send an Email with only cc or bcc recipients using Mail::Sender? When I try to send an Email without a "to" address, I get the expected return code: -8 = argument $to empty ...

Suggestions for Java email templating?

we have an application that needs to send out various different types of template email. The current code is very cumbersome and not very flexible. Does any one konw of a library to help with this type of work... We are looking for some kind of templating library for email. ...

PickupDirectoryFromIis, Sender property and SMTP MAIL FROM envelope

Hi, When you send an email using System.Net.Mail you can set the SMTP MAIL FROM envelope by using the MailMessage.Sender Property. If you set the smtp network deliveryMethod property to be "Network", the MAIL FROM envelope is set using the Sender value. If you set the smtp network deliveryMethod property to be "PickupDirectoryFromIis", ...

Do you use word wrapping within emails?

I'm wondering if word wrapping should be applied in text emails? And what about HTML emails? If so, what character would you normally wrap at? ...

JSP as Email template

Is there a way to send a MIME email in which the body of the email is derived from a JSP? I need to send an email with Javamail which contains a table and I figure it would be convenient if I could use a JSP to do all the formatting and layout. ...

Associating multiple e-mail addresses with ASP.NET MembershipProvider accounts

For a project I am currently working on, I am interested in allowing users to provide multiple e-mail addresses, both for contact purposes as well as providing address book-based social matching. I plan to write a custom membership provider (aspnet_Membership table is too heavy for my liking), but the MembershipProvider system only allow...

Doing email analysis for a postmortem (Exchange or IMAP)

I ended up doing some emergency PM stuff at work and I would like to post mortem my email to see who I was talking to and what I did wrong. I'm looking for suggestions on tools that would allow me to see the amount of email I was sending/receiving and perhaps see various statistics etc. Any suggestions? ...

What's a quick, easy way to send HTML emails to myself to test them?

I've been given the task of optimizing HTML emails for different email/webmail clients. I used to test the HTML file by doing a trick in Outlook Express, to make it send the raw HTML, but Microsoft seems to have stopped supplying Outlook Express now (I think "Live Mail" is supposed to replace it). So my question is, is there a simple, q...

C# code for sending an email without knowing much about the server configuration?

Is there a way, in C# code, to send an email without having to know the SMTP server configuration, etc on the server, or have any of that stuff set up? The code I'm developing will be deployed to a live server, but I know nothing about the configuration, so I can't predict what the SMTP server will be. ...

A PHP API for retrieving Mail From Yahoo, GMail, Hotmail

Hello all, There are a few APIs for grabbing the address book/contact list from the major providers of email. I was wondering do APIs like this exist for grabbing emails/messages received? Thanks all EDIT I am sure I can do this myself. However, I don't want to "re-invent" the wheel if someone has done it already. Probably better th...

Sending an email with the header return-path using windows virtual mail server

I'm trying to send an email message using the .NET MailMessage class which can also have the return-path header added so that any bounces come back to a different email address. Code is below: MailMessage mm = new MailMessage(new MailAddress(string.Format("{0}<{1}>", email.FromName, email.FromEmail)), new MailAddress(emailTo...

How can I embed a PDF in an Email?

I've already referred to this: http://stackoverflow.com/questions/104177/how-do-i-embed-an-image-in-a-net-html-mail-message I've been embedding images using an AlternateView for PNG files. Now I'm wondering how to do it with PDFs. Should it work, for the LinkedResource, to just say: Dim document As New LinkedResource(pdfFilePath, "i...

maildir headers problem

Hello, I have the followign bash script to update mtimes for maildir files: #!/bin/bash for i in /test/emailfile do date=$(sed -n '/Received: from/ { :a; n; /;/ {s/.*; //p;q}; b a }' "$i") newdate=$(date -d "$date" +'%Y%m%d%H%M.%S') touch -t "$newdate" "$i" done This script has always worked fine, with standard headers ...

Report subscription for email delivery in SSRS

Hi, I have an SSRS report . I tried to create a subscription ansking an email delivery of the report to my mail account. but it fails giving this error message "The email address of one or more recepients is not valid". I am having a Browser role. Could any one tell me the reason. Thanks, Anna ...

ISO encoded attachment names and python

First of all i don't have the code example on this computer, but i have an example that is quite similar. (http://docs.python.org/library/email-examples.html) The 4th one. My issue lies within this bit of code counter = 1 for part in msg.walk(): # multipart/* are just containers if part.get_content_maintype() == 'multipart': ...

How do I create email with css and images from Rails?

How do you create and send emails from Rails application, that contain images and proper formatting? like the ones you get from facebook and like. ...