active questions tagged email - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T23:11:33Zhttp://stackoverflow.com/feeds/tag/emailhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805934/sending-emails-changing-from-field-bad1Sending Emails: Changing "From" Field Bad?starmonkey2009-11-26T22:25:21Z2009-11-26T22:48:13Z
<p>Hey All,</p>
<p>Just wondering if changing the "From" field when sending email (programatically) is considered a "bad" thing, and will mail servers more likely reject emails sent from my web/mail server because of it (or be marked as spam).</p>
<p>I have a facility where users from my website send emails using a web-interface, so the web/mail server must send the email and change the From field to pretend it's from the user's email.</p>
<p>The RFC doesn't really state much: <a href="http://www.faqs.org/rfcs/rfc2822.html" rel="nofollow">http://www.faqs.org/rfcs/rfc2822.html</a></p>
<p>Cheers,
SM</p>
<p>edit: here are the headers in gmail when I send an email using my web-interface:</p>
<p>Received-SPF: fail (google.com: domain of web_email_addy@mailinator.com does not designate xxx as permitted sender) client-ip=xxx;
Authentication-Results: mx.google.com; spf=hardfail (google.com: domain of web_email_addy@mailinator.com does not designate xxx as permitted sender) smtp.mail=web_email_addy@mailinator.com
Received: from localhost (webserver.name [yyy])
by sending.domain (Postfix) with ESMTP id 903201474F
for ; Fri, 27 Nov 2009 09:10:29 +1100 (EST)</p>
<p>edit2: spf = fail seems bad, but gmail does nothing about it:</p>
<p><a href="http://www.openspf.org/SPF%5FReceived%5FHeader" rel="nofollow">http://www.openspf.org/SPF%5FReceived%5FHeader</a></p>
<p>When an SPF query returns "fail", the MTA should reject the connection.</p>
<p>When an SPF query returns any other result, the MTA should add an advisory header to the message of the form "Received-SPF: neutral" or "Received-SPF: pass". That way, a spam filter further down the road can take that header into account as part of a more balanced decision.</p>
http://stackoverflow.com/questions/1805022/how-to-handle-special-entities-in-email-addresses0How to handle Special Entities in email addresses?Jitendra2009-11-26T18:09:05Z2009-11-26T18:43:52Z
<p>if you look at the email address</p>
<p>b&byouaddress@email.com (this email address is a example)</p>
<p>The & is not a valid character for the email address & thus you get "b" in mail that is generated..I have tried using almost all the encodings available on net...</p>
<p>But my CMS decodes them again into html & the result is again same as before... So no use of it..</p>
<p>I have tried using almost all the encodings available on net... + I also have tried javascript encoded mail id but even that didn’t work.. :( </p>
http://stackoverflow.com/questions/1804901/send-email-attachement-using-byte-with-java-mail0Send Email Attachement using byte[] with Java-MailNuno Furtado2009-11-26T17:30:25Z2009-11-26T17:35:17Z
<p>I have a byte array wich i wish to add as an attachement to an email i am sending.</p>
<p>Unfortunally i can't find how to attach it as a byte array, the solution i have uses disk files (which i dont want since i dont want to write the byte array just so i can attach it).</p>
<p>I've found one solution that involves creating an object that extends DataSource and use this as a wrapper for the byte array and then feed that to the MimeBodyPart.</p>
<p>Anyone know of a better solution?</p>
http://stackoverflow.com/questions/1804565/mms2r-and-multiple-images-rails0MMS2R and Multiple Images RailsMaletor2009-11-26T16:14:05Z2009-11-26T16:14:05Z
<p>Here's my code:</p>
<p>require 'mms2r'</p>
<p>class IncomingMailHandler < ActionMailer::Base</p>
<p>##
# Receives email(s) from MMS-Email or regular email and
# uploads that content the user's photos.
# TODO: Use beanstalkd for background queueing and processing.
def receive(email)<br>
begin
mms = MMS2R::Media.new(email)</p>
<pre><code> ##
# Ok to find user by email as long as activate upon registration.
# Remember to make UI option that users can opt out of registration
# and either not send emails or send them to a username+32523@xxx.com
# type address.
##
# Remember to get SpamAssasin
if (@user = User.find_by_email(email.from) && email.has_attachments?)
mms.media.each do |key, value|
if key.include?('image')
value.each do |file|
@user.photos.push Photo.create!(:uploaded_data => File.open(file), :title => email.subject.empty? ? "Untitled" : email.subject)
end
end
end
end
ensure
mms.purge
end
</code></pre>
<p>end</p>
<p>end</p>
<p>and here's my error:</p>
<p>/usr/local/lib/ruby/gems/1.8/gems/rails-2.3.4/lib/commands/runner.rb:48: undefined method <code>photos' for true:TrueClass (NoMethodError)
from /usr/home/xxx/app/models/incoming_mail_handler.rb:23:in </code>each'
from /usr/home/xxx/app/models/incoming_mail_handler.rb:23:in <code>receive'
from /usr/home/xxx/app/models/incoming_mail_handler.rb:21:in </code>each'
from /usr/home/xxx/app/models/incoming_mail_handler.rb:21:in <code>receive'
from /usr/local/lib/ruby/gems/1.8/gems/actionmailer-2.3.4/lib/action_mailer/base.rb:419:in </code>receive'
from (eval):1
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in <code>eval'
from /usr/local/lib/ruby/gems/1.8/gems/rails-2.3.4/lib/commands/runner.rb:48
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in </code>gem_original_require'
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from /home/xxx/script/runner:3</p>
<p>I sent an email to the server with two image attachments. Upon receiving the email the server runs
"| ruby /xxx/script/runner 'IncomingMailHandler.receive STDIN.read'"</p>
<p>What is going on? What am I doing wrong?</p>
<p>MMS2R docs are here:
<a href="http://mms2r.rubyforge.org/mms2r/" rel="nofollow">http://mms2r.rubyforge.org/mms2r/</a></p>
http://stackoverflow.com/questions/970025/open-eml-file-in-any-mail-client-and-take-screenshot0Open eml file in any mail client and take screenshotŽeljko Filipin2009-06-09T13:18:21Z2009-11-26T15:57:13Z
<p>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.)</p>
<p>I would like to open each file in any mail client and take a screen shot, so I could visually inspect e-mails later.</p>
<p>The idea is that I could use a image viewing application to look at several screenshots in the same time, so I could visually compare them (after each test run).</p>
<p>I have access to Windows, Mac and Linux machines. I would prefer if the solution is in Ruby, but that is not required.</p>
<p>I am searching the web and this site, but no luck so far. I will post the solution in answer if I find it.</p>
http://stackoverflow.com/questions/1804027/why-wont-mfmailcomposeviewcontroller-send-messages0Why won't MFMailComposeViewController send messages?Gaurav Arora2009-11-26T14:37:13Z2009-11-26T15:48:26Z
<p>I am tring to send an email using xcode on Mac PC. For this I am using MFMailComposeViewController class and I have attached the code files:</p>
<p>But when I click on send button of the modal view controller then it returns MFMailComposeResultSent object of MFMailComposeResult class but the email did not reach to the specified email id. When I click on Cancel button then it returns MFMailComposeResultCancelled.</p>
<p>And I have also configured my mac with an email account. But the thing which I am not able to understand is How this email account is connected with the above code because even if when I delete all the email accounts from the mac machine then also on clicking the send button of the modalViewController it returns the MFMailComposeResultSent object.</p>
<p>Can someone help me in sending the email and understanding the communication between the email accounts and the above code.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1414898/phing-sending-the-full-log-by-email1phing : sending the full log by email ?Pascal MARTIN2009-09-12T11:19:45Z2009-11-26T10:02:33Z
<p>Hi,</p>
<p>I'm using <a href="http://phing.info/trac/" rel="nofollow"><strong>phing</strong></a> for some automatic-building process on a project, and was wondering : <strong>how can I get the full log by email ?</strong></p>
<p><br>
When I launch <code>phing</code> by the command-line, the building-log is displayed ; I would like it :</p>
<ul>
<li>sent by e-mail,</li>
<li>to several recipients,</li>
<li>whether the build succeeded or failed</li>
<li>ideally : with a subject for the mail telling if the build succeeded or failed</li>
<li>ideally : some kind of HTML mail, with formatting, colors, ... would be nice</li>
</ul>
<p>I've though about piping the ouput of <code>phing</code> to the <code>mail</code> command, but I would like a solution that work on both Linux and Windows, and doesn't require the installation of any additional software...</p>
<p>Does anyone have an idea ?</p>
<p><br>
As a sidenote : I've thought about adding some kind of "report" target, launched at the end of the build, but :</p>
<ul>
<li>It is launched only if all previous targets did not fail</li>
<li>I don't see how to get the full-log in it</li>
</ul>
http://stackoverflow.com/questions/1784818/accept-all-incoming-email-messages-on-server0Accept All Incoming Email Messages on ServerDEH2009-11-23T17:49:47Z2009-11-26T09:01:49Z
<p>I want to write some email scanning software and don't understand how to setup my server. I have a hosted web server running Windows 2003 Server. It is running the Default SMTP Virtual Server with a fully-qualified domain name of abcdef.com (example). DNS is pointing abcdef.com to my server. If I spoof an email from my desktop pc so that it appears to come from info@abcdef.com, and I send the email to a 'non-existant' email address then the bounceback does arrive on my web server and is stored in C:\inetpub\mailroot\Queue on the server - great! (I can scan it and handle the bounceback). However, if I simply send an email straight to info@abcdef.com then it does not seem to get placed anywhere on the server. I don't understand why bouncebacks get stored but other incoming email doesn't. I'm keen to avoid having to install any 'email server software' on the server, as I want to keep things as clean as possible. All I really want is some way of telling the server to accept all incoming messages to abcdef.com so that I can process them myself, and to place the .eml files in a known directory that I can scan. I'll then write an eml file parser to process the files.
Thanks very much.</p>
http://stackoverflow.com/questions/1801008/django-html-email-adds-extra-characters-to-the-email-body0Django Html email adds extra characters to the email bodyblackrobot2009-11-26T01:00:15Z2009-11-26T04:18:10Z
<p>I'm using Django to send an e-mail which has a text part, and an HTML part. Here's the code:</p>
<pre>
subject = request.session.get('email_subject', None)
from_email = request.session.get('user_email', None)
to = request.session.get('user_email', None)
bcc = [email.strip() for email in request.session.get('email_recipients', None).split(settings.EMAIL_DELIMITER)]
text_content = render_to_response(email_text_template, {
'body': request.session.get('email_body', None),
'link': "http://%(site_url)s/ecard/?%(encoded_greeting)s" % {
'site_url': settings.SITE_URL,
'encoded_greeting': urlencode({'g': quote_plus(request.session.get('card_greeting'))}),
},
}, context_instance=RequestContext(request))
html_content = render_to_response(email_html_template, {
'body': request.session.get('email_body', None),
'link': "http://%(site_url)s/ecard/?%(encoded_greeting)s" % {
'site_url': settings.SITE_URL,
'encoded_greeting': urlencode({'g': request.session.get('card_greeting')}),
},
'site_url': settings.SITE_URL,
}, context_instance=RequestContext(request))
email = EmailMultiAlternatives(subject, text_content, from_email, [to], bcc)
email.attach_alternative(html_content, "text/html")
sent = email.send()
</pre>
<p>When the user receives the email, it has this text in it: "Content-Type: text/html; charset=utf-8". Is there a good way to get rid of this?</p>
http://stackoverflow.com/questions/1800970/zendmail-and-0d0a3d3d3d3d3d1Zend_Mail and =0D=0A=3D=3D=3D=3D=3DMark2009-11-26T00:48:42Z2009-11-26T01:19:09Z
<p>I'm writing a help desk pipe handler to pipe incoming e-mails as helpdesk ticket replies. Some e-mails are coming in perfectly fine, others are coming in as a jumble of the text and =3D's all munged into one giant string. Does anyone have an idea on how to decode that into plain text. </p>
<p>For reference, this is my mail parser function:</p>
<pre><code>public function parseEmailMessage(Zend_Mail_Message $msg)
{
if ($msg->isMultiPart()) {
$arrAttachments = array();
$body = '';
// Multipart Mime Message
foreach (new RecursiveIteratorIterator($msg) as $part) {
try {
$mimeType = strtok($part->contentType, ';');
// Parse file name
preg_match('/name="(?<filename>[a-zA-Z0-9.\-_]+)"/is', $part->contentType, $attachmentName);
// Append plaintext results to $body
// All other content parts will be treated as attachments
switch ($mimeType) {
case 'text/plain':
$body .= trim($part->getContent()) . "\n";
break;
case 'text/html':
$body .= trim(strip_tags($part->getContent));
break;
default:
$arrAttachments[] = array(
'attachment_mime' => $mimeType,
'attachment_name' => $this->filterFileName($attachmentName['filename']),
'base64data' => trim($part->getContent())
);
}
} catch (Zend_Mail_Exception $e) {
// ignore
}
}
return array($body, $arrAttachments);
} else {
// Plain text message
return array(trim($msg->getContent()), array());
}
}
</code></pre>
http://stackoverflow.com/questions/1796443/calculating-difference-between-username-and-email-in-javascript2Calculating difference between username and email in javascriptSaif Bechan2009-11-25T11:47:18Z2009-11-25T22:52:59Z
<p>Hi, for security reasons i want the users on my website <strong>not to be able to register a username that resembles their email adress</strong>. Someone with email adress user@domain.com cant register as user or us.er, etc</p>
<p>For example i want this not to be possible:</p>
<p>tester -> tester@mydomain.com (wrong)
tes.ter -> tester@mydomain.com (wrong)
etc.</p>
<p>But i do want to be able to use the following:</p>
<p>tester6 -> tester@mydomain.com (good)
etc.</p>
<p>//edit
tester6 is wrong too. i ment user6 -> tester@mydomain.com (good).</p>
<p>Does anyone have an idea how to achieve this, or something as close as possible. I am checking this in javascript, and after that on the server in php.</p>
<p>Ciao! </p>
<p>ps. Maybe there is some jquery plugin to do this, i can't find this so far. The downside tho of using a plugin for this, is that i have to implement the same in php. If it is a long plugin it will take some time to translate.</p>
<p>//Edit again
If i only check the part before the @ they can still use userhotmailcom, or usergmail, etc. If they supply that there email is abvious. </p>
http://stackoverflow.com/questions/855926/how-to-stop-exchange-from-automatically-converting-plain-text-emails-to-html1How to stop Exchange from automatically converting plain text emails to HTML?Evgeny2009-05-13T03:29:14Z2009-11-25T19:18:53Z
<p>I've set up an Exchange 2003 mailbox for emails that will be parsed by my code. The emails are sent as plain text and my code expects to receive them as plain text. However, it appears that Exchange is automatically converting them to HTML. How do I stop it from doing that and just receive the email the way it was sent?</p>
<p>The reason I believe it's Exchange doing the conversion is because the received email looks like this:</p>
<pre><code><HTML>
<HEAD>
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7654.12">
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
(then the actual contents, but with HTML markup)
</BODY>
</HTML>
</code></pre>
http://stackoverflow.com/questions/1167174/phpmailer-1-5-sourceforge-not-working0PHPMailer 1.5 / Sourceforge not working??kilrizzy2009-07-22T18:17:18Z2009-11-25T16:16:20Z
<p>I have been trying to get the latest version of phpmailer from here:</p>
<p><a href="http://sourceforge.net/projects/phpmailer/files/" rel="nofollow">http://sourceforge.net/projects/phpmailer/files/</a></p>
<p>but I keep getting "file not found" / "unable to load mirrors" errors. I tried other files it seems like sourceforge is messed up right now or something is wrong with my connection to it.</p>
<p>Any ideas? And if it is sourceforge does anyone have/know where I can get an alt link?</p>
http://stackoverflow.com/questions/1796875/sharepoint-send-an-email-to-users-specified-in-a-field0SharePoint send an email to users specified in a FieldMark Anthony2009-11-25T13:20:42Z2009-11-25T15:14:58Z
<p>I have a SharePoint list of Issues and have set a column (called Alert) to a “Person or Group” (allowing multiple names). </p>
<p>I would like the system to send an email to all the users listed in the Alert field, if the respective Issue is modified.</p>
<p>How do I set the Workflow to send an email the users as specified by the data in the Alert field (if there is any)? I know how to use the Workflow etc – the problem the “To” part of the Workflow's email.</p>
<p>(Sorry if this item has already been tackled – I've searched Stack Overflow and Googled around but could not find an answer)</p>
<p>Preferably through SharePoint Designer. i.e. preferably with no Code.</p>
<p>Regards.</p>
http://stackoverflow.com/questions/612627/are-there-any-cms-editors-out-there-which-users-can-populate-locked-down-html-tem0Are there any CMS editors out there which users can populate locked down HTML templates with content and submit, but in a very, very stripped down way?Deep2009-03-04T21:53:54Z2009-11-25T14:00:05Z
<p>Hi there,</p>
<p>We work in email marketing, creating HTML/TEXT emails for clients. In essence we design HTML email templates for our clients. Clients then post us content (via a form) to populate these templates before we send them out. Right now we do this manually, basically cutting and pasting the content from their submitted form into the relevant parts of the template, which is time consuming and particularly mind-numbing.</p>
<p>What we're looking for (and have so far been unable to find) is a simple system which will allow us to capture this client content in a sort of WYSIWYG HTML format. Basically they populate a locked down version of the template, entering text where necessary, before submitting to us. This is our most basic requirement, and a friend of mine kindly demo'd a proof of concept here: </p>
<p><a href="http://advantageone.co.uk/mbe/" rel="nofollow">http://advantageone.co.uk/mbe/</a><br />
Note: If you click on a text area in the body of the template, an editor pop ups.</p>
<p>Now what we are looking for a CMS editor out there which can be easily adapted to do the above and the following for our end clients?</p>
<ul>
<li>User login</li>
<li>View previously submitted campaigns that they have created and edit these</li>
<li>Create new - selecting from template (assigned to their user/client id), perhaps being able to add new rows to the template. </li>
<li>And have these HTML templates locked down so they can only edit what they're allowed too (like in the demo above), and perhaps make some areas required. </li>
<li>Perhaps have a simple workflow or approval built in</li>
<li>Allow us to lock submitted campaigns after a point so they can't be further edited, and as administrators view all campaigns from all users</li>
<li>Be so incredibly simple, with any extraneous functionality switched off</li>
</ul>
<p>Essentially an extremley simple stripped down CMS, but we use the outputted HTML for sending out as an email, rather than publishing onto the web.</p>
<p>Now to the actual dilemma: we're looking for something really simple, and the above sounds like a CMS. But we haven't been able to find anything that already does, or can be easily adapted to do this. Everything is either too complex, or simple and inflexible. We're sure there must be something off the shelf available, rather than us coding something ourselves. </p>
<p>But we've kind of got stuck. Does anyone know of a system, or could recommend a system that can do the above out of the box, or with a few days tweaking?</p>
<p>Forgive me if this is a little disjointed, if I'm being incredibly dopey and there is something out there please let me know!</p>
<p>Kind regards,</p>
<p>Dp.</p>
http://stackoverflow.com/questions/1796224/how-to-add-mysites-mail-to-whitelist0How to add mysites mail to whitelist?vinothkumar2009-11-25T11:08:00Z2009-11-25T11:47:11Z
<p>hello friends,</p>
<p>Currently I am developing a website.In this I have the option to send invittion.When I send the Invitation it going to spam folder.How can I send my site's mails to Inbox.Whether I nedd the trafic to add into whitelist?Or is there anyother way to make to directly send the email to Inbox.My site is developed in PHP......Thanks in advance...</p>
http://stackoverflow.com/questions/1795104/receiving-email-actionmailer-with-rails-to-process-image-attachments0Receiving Email (ActionMailer) with Rails to process image attachmentsMaletor2009-11-25T06:54:55Z2009-11-25T09:47:49Z
<p>I am trying to parse an email sent to my app server.
It should read the email to find the user by email then add the photo
to the user's photo models
Here is what I have so far. What am I doing wrong? </p>
<pre><code>class Mailman < ActionMailer::Base
def receive(email)
logger.info("Got an email about: #{email.subject}")
if (@user = User.find_by_email(email.from))
if email.has_attachments?
for attachment in email.attachments
#...@user.photos.create(:data_file_name => attachment.original_filename,
# :data_content_type => attachment.content_type, :data_file_size => attachment.size,
# :data_updated_at => Time.now.to_datetime)
# @user.photos << attachment
# I don't think this is the right way to do this...
end
end
else
logger.info("No user found with email: #{email.from}")
end
end
end
class User < ActiveRecord::Base
acts_as_authentic
has_attached_file :avatar
has_many :photos, :dependent => :destroy
accepts_nested_attributes_for :photos
# What does this do?
end
class Photo < ActiveRecord::Base
belongs_to :user
has_attached_file :data
end
class AddAttachmentsDataToPhoto < ActiveRecord::Migration
def self.up
add_column :photos, :data_file_name, :string
add_column :photos, :data_content_type, :string
add_column :photos, :data_file_size, :integer
add_column :photos, :data_updated_at, :datetime
end
def self.down
remove_column :photos, :data_file_name
remove_column :photos, :data_content_type
remove_column :photos, :data_file_size
remove_column :photos, :data_updated_at
end
end
</code></pre>
http://stackoverflow.com/questions/1787305/php-whitespace-in-email-issue1[PHP] Whitespace in email issuerico2009-11-24T01:54:47Z2009-11-25T09:13:14Z
<p>I'm experiencing a strange problem and difficult to diagnose because<br>
it's random. I have built an application that sends out an email with<br>
a nice amount of text (don't have exact char count, but could get it).</p>
<p>On the html email, a random whitespace appears in the content.</p>
<p>See below for examples of how the space wanders and is random:</p>
<pre><code>1- "Th ere are several things being discussed in this email."
2- "There are se veral things being discussed in this email."
3- "There are severa l things being discussed in this email."
</code></pre>
<p>This whitepace issue also happens for links. Found this issue in hotmail and gmail so far.</p>
<p>Anybody have any ideas?</p>
<p>$header = "MIME-Version: 1.0\r\n"; <br>
$header .= "Content-type: text/html; charset=utf-8\r\n"; <br>
$header .= "From: abc \r\n"; <br>
$subject = "abc"; <br>
$mail_body = "Hello!";<br>
$mail_body .= "content"; <br>
mail($email_address, $subject, $mail_body, $header); <br><br></p>
<p>That is the code to give you an idea roughly..</p>
http://stackoverflow.com/questions/1792366/extract-urls-out-of-email-in-python0Extract URLs out of email in PythonDemon Labs2009-11-24T19:27:51Z2009-11-25T09:12:00Z
<pre><code>Dear Sam Adams
Thanks for your submission to ourdirectory.com
URL: http://myurlok.us
Please click below link to confirm your submission.
http://www.ourdirectory.com/confirm.aspx?id=1247778154270076
Once we receive your comfirmation, your site will be included for process!
regards,
http://www.ourdirectory.com
Thank you!
</code></pre>
<p>Should be obvious which URL I need to extract.</p>
http://stackoverflow.com/questions/1502471/sending-text-to-different-email-server0Sending text to different email serverunknown (google)2009-10-01T07:48:09Z2009-11-25T07:00:03Z
<pre><code> SmtpClient smtpClient = new SmtpClient();
MailMessage message = new MailMessage();
try
{
MailAddress fromAddress = new MailAddress("myname@gmail.com", "Lenin");
smtpClient.Host = "localhost";
//smtpClient.Host = "";
//smtpClient.Port = 25;
message.From = fromAddress;
message.To.Add("myname@gmail.com");
message.Subject = "Feedback";
//message.CC.Add("admin1@ gmail.com");
//message.CC.Add("admin2@ gmail.com");
// message.Bcc.Add(new MailAddress("admin3@ gmail.com"));
// message.Bcc.Add(new MailAddress("admin4@ gmail.com"));
message.IsBodyHtml = false;
message.Body = txtComments.Text;
smtpClient.Send(message);
MessageBox.Show("Email successfully sent.");
}
catch (Exception ex)
{
MessageBox.Show("Send Email Failed." + ex.Message);
}
</code></pre>
<p>please help to sent email to different server .. gmail.com/yahoo.com/inbox.com ..etc using windows application.
thanks for the help.</p>
http://stackoverflow.com/questions/1018078/testing-html-email-rendering4Testing HTML email renderingejunker2009-06-19T13:53:12Z2009-11-25T04:32:11Z
<p>Are there any good tools to easily test how HTML email will look across different email clients? I prefer something with instant feed back rather than a submit and wait service like <a href="http://litmusapp.com" rel="nofollow">http://litmusapp.com</a> Or at the very least a way to test the Outlook 2007/MS Word rendering?</p>
<p>I found this related question but it doesn't specifically address testing. <a href="http://stackoverflow.com/questions/127498/what-guidelines-for-html-email-design-are-there">What guidelines for HTML email design are there?</a></p>
http://stackoverflow.com/questions/1787906/why-does-phps-mail-want-to-deliver-to-the-second-specified-mx-record1Why does php's mail() want to deliver to the second specified MX record?Dan2009-11-24T05:01:30Z2009-11-25T03:19:16Z
<p>This is very similar to this problem: </p>
<p><a href="http://stackoverflow.com/questions/322659/sendmail-and-mx-records-when-mail-server-is-not-on-web-host">http://stackoverflow.com/questions/322659/sendmail-and-mx-records-when-mail-server-is-not-on-web-host</a></p>
<p>I have a php script on an IIS server called example.org. It sends mail() to somedude@example.com, which goes to a spam appliance and on to their Exchange server, but the mail never gets through. When I look in the logs there's an SMTP error saying user unknown or something, but the main point is that it's throwing an error as it's using the server specified in the second MX record, rather than the primary one. Consistantly.</p>
<p>Did a nslookup and the machine can look up the DNS and get the correct data, what's going on?</p>
http://stackoverflow.com/questions/1788659/seemingly-basic-c-question0Seemingly basic C++ questionshawnjan2009-11-24T08:29:25Z2009-11-25T00:58:54Z
<p>Alright, so this is annoying the hell out of me and I'm sure its a simple thing to do. Basically, I'm working with an open source C++ client called POCO to make a email client for a class...</p>
<p>Basically, I have a pop3 client object that retrieves emails from my email server, and then puts the emails in an object called MailMessage. Now, I want to be able to get my attachments, and the only functionality it seems that I have to do that is the following function:</p>
<pre><code>static const std::string & contentTransferEncodingToString(
ContentTransferEncoding encoding
);
</code></pre>
<p>Problem is, I had no idea what the following was:</p>
<blockquote>
<p>ContentTransferEncoding encoding</p>
</blockquote>
<p>After digging into the source code, I found out it has something to do with "enums" (this is public by the way):</p>
<pre><code>enum ContentTransferEncoding
{
ENCODING_7BIT,
ENCODING_8BIT,
ENCODING_QUOTED_PRINTABLE,
ENCODING_BASE64
};
</code></pre>
<p>Basically, the attachment I'm trying to open uses 7 bit encoding. Does ANYONE know how to deal with these enums, and how I can pass them into the contentTransferEncodingToString function?</p>
<p>Thank you so much for your efforts :)</p>
<blockquote>
<p>EDIT:</p>
<p>So, unreal, but I didn't realize that
the function I was trying to access
was protected, it wasn't the enums, so
the way you all suggested to access
the enums was correct! And I guess the
way I was trying to access them was
also correct =P. Just a big stupid
mistake.</p>
<p>But thanks for all your efforts!!!
Great community :)</p>
</blockquote>
http://stackoverflow.com/questions/1793752/email-intent-not-showing-the-chooser0Email Intent not showing the chooser.fiXedd2009-11-24T23:42:13Z2009-11-24T23:47:23Z
<p>I'm using the following to initiate the sending of an email:</p>
<pre><code>Intent i = new Intent(Intent.ACTION_SEND);
i.setType("message/rfc882");
i.putExtra(Intent.EXTRA_EMAIL, new String[]{s});
startActivity(Intent.createChooser(i, "Send mail..."));
</code></pre>
<p>The problem that I'm having is that (on my phone) it pulls up Gmail's Compose window instead of allowing me to choose which email client I'd like to send the message with. </p>
<p>Am I doing this wrong, or does the default email client just not respond to email send intents?</p>
http://stackoverflow.com/questions/777607/the-remote-certificate-is-invalid-according-to-the-validation-procedure-plea0"The remote certificate is invalid according to the validation procedure." - Please helpJosh2009-04-22T14:51:18Z2009-11-24T22:40:36Z
<p>Hello,</p>
<p>I'm getting this error "The remote certificate is invalid according to the validation procedure." whenever I try to send e-mail using gmail's SMTP server in my C# code.
Can someone point me to the right direction for a solution to this problem?</p>
<p>The following is the stack trace...</p>
<p>at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Net.TlsStream.CallProcessAuthentication(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.Mail.SmtpConnection.Flush()
at System.Net.Mail.SmtpConnection.GetConnection(String host, Int32 port)
at System.Net.Mail.SmtpTransport.GetConnection(String host, Int32 port)
at System.Net.Mail.SmtpClient.GetConnection()
at System.Net.Mail.SmtpClient.Send(MailMessage message)
at BulkEmail.frmemail.mailsending(String toaddress, String fromaddress, String fromname, String subject, String pwd, String attachements, String mailmessage, String htmlmessage, Int32 i, Int32 j, String replytoaddress)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1793287/generating-an-article-from-an-email-in-mediawiki0Generating an article from an email in mediawikiSam2009-11-24T22:11:43Z2009-11-24T22:17:29Z
<p>I would like to be send an email to an address that mediawiki can pick up and have mediawiki take it and generate a new page from it as a starting point. More complicated stuff like categories can come later.</p>
<p>I have searched around on the web and not found anything obvious.</p>
<p>I have not developed against mediawiki before but am an able and willing developer.</p>
<p>Thanks for any assistance provided.</p>
http://stackoverflow.com/questions/1791468/how-do-i-use-reverse-dns-lookup-to-prevent-the-emails-i-send-to-go-into-spam0How do I use reverse DNS lookup to prevent the emails I send to go into spam?marcgg2009-11-24T17:04:34Z2009-11-24T17:13:20Z
<p>I saw that a lot of answer to <a href="http://stackoverflow.com/questions/371/how-do-you-make-sure-email-you-send-programmatically-is-not-automatically-marked">this question</a> stated that doing a <a href="http://en.wikipedia.org/wiki/Reverse%5FDNS%5Flookup" rel="nofollow">reverse dns lookup</a> was really important in order to prevent mails sent by a system to go into spam. </p>
<p>Ok... but what is it exactly and what am I supposed to do with this information? What are the common practices and so on?</p>
<p>For example, here's the trace of an email sent via the system I'm working on:</p>
<pre><code>Delivered-To: someone@gmail.com
Received: by 10.204.64.81 with SMTP id d17cs388089bki;
Mon, 23 Nov 2009 09:47:24 -0800 (PST)
Received: by 10.204.7.197 with SMTP id e5mr4936436bke.184.1258998442514;
Mon, 23 Nov 2009 09:47:22 -0800 (PST)
Return-Path: <someoneelser@gmail.com>
Received: from gator449.hostgator.com (gator449.hostgator.com [74.54.145.98])
by mx.google.com with ESMTP id 5si4650719bwz.63.2009.11.23.09.47.21;
Mon, 23 Nov 2009 09:47:22 -0800 (PST)
Received-SPF: neutral (google.com: 74.54.145.98 is neither permitted nor denied by domain of someoneelse@gmail.com) client-ip=74.54.145.98;
Authentication-Results: mx.google.com; spf=neutral (google.com: 74.54.145.98 is neither permitted nor denied by domain of someoneelse@gmail.com) smtp.mail=someoneelse@gmail.com
Received: from mail-001.vm.brightbox.net ([89.16.191.247]:58738)
by gator449.hostgator.com with esmtp (Exim 4.69)
(envelope-from <someoneelse@gmail.com>)
id 1NCd0S-0006PA-CL
for someone@my-company.com; Mon, 23 Nov 2009 11:47:20 -0600
Received: from my-company-001.vm.brightbox.net (unknown [10.1.191.229])
by mail-001.vm.brightbox.net (Postfix) with ESMTP id 93852A014F
for <someone@my-company.com>; Mon, 23 Nov 2009 17:47:09 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
by my-company-001.vm.brightbox.net (Postfix) with ESMTP id 77AED7012F
for <someone@my-company.com>; Mon, 23 Nov 2009 17:47:09 +0000 (UTC)
Date: Mon, 23 Nov 2009 17:47:09 +0000
From: someoneelse@gmail.com
Reply-To: someoneelse@gmail.com
To: someone@my-company.com
Message-Id: <4b0aca9d6cf0b_41a4406c35a156@my-company-001.vm.brightbox.net.tmail>
Subject: Votre candidature
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
X-AntiAbuse: This header was added to track abuse, please include it with any abuse report
X-AntiAbuse: Primary Hostname - gator449.hostgator.com
X-AntiAbuse: Original Domain - my-company.com
X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]
X-AntiAbuse: Sender Address Domain - gmail.com
Hey, here's an email!
</code></pre>
<p>So... what do I do with that? <a href="http://remote.12dt.com/" rel="nofollow">Do I do a rDNS lookup</a> on each IP and see what's up? What if there is a problem with one?</p>
<p>Any pointers or reference to articles would be really helpful.</p>
http://stackoverflow.com/questions/1791455/handling-mail-forwarding-with-php0Handling mail forwarding with phpmercutio2009-11-24T17:02:51Z2009-11-24T17:13:09Z
<p>I have a feature in my app that handles and parses incoming emails.</p>
<p>The mails come in through the usual method with exim as a .forward file:</p>
<pre><code>| /path/to/php /path/to/mail/handler.php
</code></pre>
<p>This sends RFC822 formatted text to my handler, which uses a parser to break it down and hand over to the rest of my app.</p>
<p>New feature needs to be added to forward any mails to <strong>foo@mysystem.com</strong> along to <strong>bar@othersystem.com</strong></p>
<p>I'm trying to figure out a way to do this the most simple way. The long way is to take the parsed message, modify the To: address and send on as a new mail.</p>
<p>So my question is: What's the simple way to "forward" an RFC822 formatted message? Is there a way of telling exim to forward the mail instead?</p>
http://stackoverflow.com/questions/1791386/quitting-fasthosts-and-need-a-managed-email-provider0Quitting Fasthosts and Need a Managed Email ProviderCountZero2009-11-24T16:53:55Z2009-11-24T16:53:55Z
<p>Hi guys, </p>
<p>Fasthosts email service has been down all day so both us and our clients have been without email. Not really good news for a web development company. Even their site is down!</p>
<p>After the fiasco the other year with them losing everyones passwords it is time for a change. </p>
<p>Does anyone know of a good managed email reseller account we can get?</p>
<p>We dont want to have to administer an exchange server so a managed system would be ideal.</p>
<p>A manager saw this company.</p>
<p>Anyone know if these guys are and good or of anyone else?</p>
<p>Cheers</p>
<p>Steve</p>
http://stackoverflow.com/questions/1789032/send-email-from-localhost1send email from localhostconspirisi2009-11-24T09:49:51Z2009-11-24T15:27:09Z
<p>I'm try learn about email in rails. I'm developing something on localhost. Is it possible to send an email from localhost to say a normal mail account like gmail? Do I have a install a mail server? I've just got a standard rails installation at the moment for development.</p>