tagged [email]
How to embed images in html email
How to embed images in html email I'm trying to implement a code to send HTML email with embedded image. I already tried for simple HTML email with image but this image is taken from server.
Sending a mail from a linux shell script
Sending a mail from a linux shell script I want to send an email from a Linux Shell script. What is the standard command to do this and do I need to set up any special server names?
using c# .net libraries to check for IMAP messages from gmail servers
using c# .net libraries to check for IMAP messages from gmail servers Does anyone have any sample code in that makes use of the .Net framework that connects to googlemail servers via IMAP SSL to check...
How can I send an email using PHP?
How can I send an email using PHP? I am using PHP on a website and I want to add emailing functionality. I have [WampServer](https://en.wikipedia.org/wiki/WampServer) installed. How do I send an email...
- Modified
- 27 Mar at 02:50
What is the best Java email address validation method?
What is the best Java email address validation method? What are the good email address validation libraries for Java? Are there any alternatives to [commons validator](http://commons.apache.org/proper...
- Modified
- 29 Jun at 14:14
How Efficient is ActionMailer?
How Efficient is ActionMailer? I am building a tool for users to send invites for a site. Is ActionMailer the best way to send the mail? It seems to be very very slow. Anyone have other recommendatio...
- Modified
- 19 Sep at 05:14
How to get the "Date" of an email?
How to get the "Date" of an email? I create an application that gets email from mail server. I use "System.Net.Mail.MailMessage" for receive email. Now I want to get "Date and Time" of each email that...
- Modified
- 21 Jul at 13:11
How to check edittext's text is email address or not?
How to check edittext's text is email address or not? how to check the text of `edittext` is email address or not without using `javascript` and regular expression? Here I used `inputtype="textEmailAd...
- Modified
- 27 Jun at 13:49
Specify the from user when sending email using the mail command
Specify the from user when sending email using the mail command Does anyone know how to change the from user when sending email using the mail command? I have looked through the man page and can not s...
Why is Gmail blocking CSS in emails?
Why is Gmail blocking CSS in emails? I used CSS in my email and sent it out. When I received the email in Gmail, all the CSS was disabled; however, when I retrieved the email in thunderbird or outlook...
- Modified
- 12 Feb at 17:24
php.ini & SMTP= - how do you pass username & password
php.ini & SMTP= - how do you pass username & password `My ISP` account requires that I send a username & password for outbound `SMTP` mail. How do I get `PHP` to use this when executing `php.mail()?` ...
html button to send email
html button to send email How do I send an email with specified initial values for the headers `subject` and `message` from a button in html, such as this where `subject` and `message` are values fetc...
How to remove image as attachment but show in body of email
How to remove image as attachment but show in body of email I found this solution for showing an image in the body of the email: [Add image to body of an email](https://stackoverflow.com/questions/412...
- Modified
- 23 May at 12:24
How can I validate an email address in JavaScript?
How can I validate an email address in JavaScript? I'd like to check if the user input is an email address in JavaScript, before sending it to a server or attempting to send an email to it, to prevent...
- Modified
- 28 Jul at 07:55
Ruby Email Client Recommendation
Ruby Email Client Recommendation We are writing an email web client in Ruby to handle (potentially international) emails. I am looking for a high-level email library that supports retrieving emails, p...
Understanding the class SmtpDeliveryMethod
Understanding the class SmtpDeliveryMethod In my code, i am sending mail from an smtp server. I use the code snippet - Besides Network, there are other ways too. What is the significance of these thin...
How to save MailMessage object to disk as *.eml or *.msg file
How to save MailMessage object to disk as *.eml or *.msg file How do I save MailMessage object to the disk? The MailMessage object does not expose any Save() methods. I dont have a problem if it saves...
- Modified
- 28 Jul at 09:50
How to send multi-part MIME messages in c#?
How to send multi-part MIME messages in c#? I want to send multi-part MIME messages with an HTML component plus a plain text component for people whose email clients can't handle HTML. The `System.Net...
Best practices for styling HTML emails
Best practices for styling HTML emails I'm designing an HTML template for an email newsletter. I've learned that many email clients ignore linked stylesheets, and many others (including Gmail) ignore ...
- Modified
- 21 Dec at 09:13
Sending email without hard-coding username and password
Sending email without hard-coding username and password Is there any way of sending an email from C# without manually coding my user name and password using Gmail SMTP? I know that there is some softw...
Maximum length of a MIME Content-Type header field?
Maximum length of a MIME Content-Type header field? I'm just designing the schema for a database table which will hold details of email attachments - their size in bytes, filename and content-type (i....
Send HTML in email via PHP
Send HTML in email via PHP How can I send an HTML-formatted email with pictures using PHP? I want to have a page with some settings and HTML output which is sent via email to an address. What should I...
JSP as Email template
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 co...