e-mail

Saving/Organizing/Searching Outlook E-mail outside of Outlook

My company requires me to use Outlook for my E-mail. Outlook does virtually nothing the way I want to do it and it frustrates me greatly. (I'm not trying to start a flame war here, it must do exactly what thousands of CEO's want it to do, but I'm not a CEO.) I would like to be able to automatically extract the thousands of E-mails and...

Software that clicks e-mail links on page?

We are experiencing a strange bug on our website which we think is related to the software installed on user's computers. We have an e-mail link on a lot of pages, which is created using Javascript (so spambots won't get it). It seems the link is "clicked" automatically on some user's machines. Some users then discard the window by clic...

Limits you hit when sending lots of email from your server

What kind of practical issues are there concerning sending tons of e-mail from a server? Will the likelihood of that e-mail being received be just the same as if it had been sent from g-mail or a personal e-mail account if I for example just blindly call the mail() function in PHP tens of thousands of times a day? (note: you are not he...

asp.net mvc framework, automatically send e-mail

I want my asp.net mvc framework system to send an e-mail everytime a certain action (inside a certain controller) is fired off. Are there any third party libraries or .net standard ways to accomplish this? ...

What's a good html e-mail template system that also, correctly, renders a text/plain alternative?

We have a web application that periodically sends out e-mails to users. At the moment we generate the html version and the text version in the code. However, this is cumbersome to maintain. Is there a good e-mail template system out there that can generate both the html and text versions of an e-mail from the same template for Java? So...

What's the best way to allow a web based e-mail system send replies and bounces to the sender's personal e-mail address?

I have a web app that only registered users can use, therefore I should have a valid e-mail address for the creator of the message. One part of this web app will allow a user to create and send a e-mail message to an e-mail address that the user enters. My web server will be creating and sending the e-mail, however if there is a deliver...

Grails Error for using e-mail service

This is the controller class JavaMailerController { JavaMailerService javamailerservice def x = {javamailerservice.serviceMethod()} } This is the Service import javax.mail.; import javax.mail.internet.; import java.util.*; class JavaMailerService { boolean transactional = false def serviceMethod() { String d_ema...

C++ SimpleMAPI SendMail always fails?

Hello I am trying to use SimpleMAPI to display a 'write message' dialogue with an attachment on Vista SP1 with either Windows Mail or Thunderbird in a C++ app (Borland C++ Builder 2006). I should be able to use MAPISendMail to do this. I don't fill in a recipient address as I expect the user to do that when the mail client displays a ...

Eric Schmidt's aspects of e-mail not in Twitter

In Google CEO Eric Schmidt's comments about twitter he highlights some aspects of the e-mail system that twitter lacks. The aspects of e-mail he mentions are: storage revocation identity Could anyone explain these aspects of the traditional e-mail system? I'm interested in creating a twitter-like system and would like to better u...

E-mail Server Software / Hardware Recommendations

I run several mid-size networking websites, sending around 10 million e-mails per month. We are having issues with deliverability and speed with our current e-mail software and need to upgrade. Does anyone have any suggestions for software and/or hardware MTA solution to do marketing and transactional e-mail sending from a website at h...

Automated E-mail with PHP and MySQL?

How can I send an automated e-mail to a users entered e-mail address? I have Xampp, which is a local web server equipped with Apache, and Mercury for mail. Ideas? ...

The remote certificate is invalid according to the validation procedure.

Hello, Please help me with this error. It occurs when I send E-mail using C# (System.Net.Mail) through gmail's smtp server. What is the code to solve this problem? Thanks. ...

Create a mailbox for an user via webservice on a remote exchange 2007 server. (C#)

EDIT ive got it almost, having and error message now that it can't find the exchange DB. I'm running the service on a different server then Exchange so I presume I have to use an UNC path. MyServer01\First Storage Group\Mailbox Database.edb does not work though... Hi! I'm getting frustrated here, feeling a massive headache coming up a...

Open eml file in any mail client and take screenshot

I perform a lot of tests that create e-mail messages. I store each message in separate eml file. (I can change file extension if needed.) I would like to open each file in any mail client and take a screen shot, so I could visually inspect e-mails later. The idea is that I could use a image viewing application to look at several screen...

Send e-mail through VBA

Hi, I am currently testing how to send an e-mail automatically using VBA within Outlook 2003, to start I have copied the below from the help files: Sub CreateHTMLMail() 'Creates a new e-mail item and modifies its properties' Dim olApp As Outlook.Application Dim objMail As Outlook.MailItem Set olApp = Outlook.Application ...

How do I read the Recieved Date from Outlook MSG files -without- the Outlook API?

I need to read stuff from an Outlook msg file. Currently I'm using a class from CodeProject.com project to accomplish this, since deploying VSTO and Outlook on a server is not an option. This class gets To, From, CC, Subject, Body, and everything else I need from the msg file, except Date information (such as Recieved Date and Sent Date...

Send an E-Mail with attachment using JAVA Mail API.without storing in local machine..

Hai to every one. i have report in my jsp page.And i am writting thet report in PDF Format. And i want to send the PDF as E-Mail with attachment,But i dont want store the file in local machine or server,But i want to send an email with attachment.. ...

Sending e-mail in large numbers

Hello, I am developing an application that needs to inform users (around 1800) on a regular basis (weekly). I consider gmail but it has a 500 mail in 24 policy, Google groups don't have an API, I contact my web hosting company (bluehost) about the situation, they don't return with an adequate answer (they don't mention the exact numbe...

C# - Send e-mail without having to login to server

I have an application that needs to send e-mails. Currently, this is what I am using: System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage(); MyMailMessage.From = new System.Net.Mail.MailAddress(fromemail.Text); MyMailMessage.To.Add(toemail.Text); MyMailMessage.Subject = subject.Te...

Send MIME-encoded file as e-mail in C#

Hi folks, I've got the problem that I have a MIME-encoded file with all relevant mail information (subject, from, to, ...) and want to send it over a defined SMTP server via C#. I've looked at the MailMessage class and searched for a solution, but I couldn't find something fitting. Are you able to help me? Thanks, Matthias ...