Menu
  • HOME
  • TAGS

Conversation/Threaded message view in roundcube 1.0.1 is disabled

webmail,roundcube

IMAP server must support the capability THREAD (THREAD=REFERENCES)

How to add a display name to mail sent via SMTP

c#,asp.net-mvc,asp.net-mvc-3,smtp,webmail

You can set the From property to include the name as well as the email address: WebMail.From = "Your Name <[email protected]>"; You may need to surround the name with quotes, for example: WebMail.From = "\"Your Name\" <[email protected]>"; ...

SendGrid being blocked by Yahoo Mail server

azure,sendgrid,webmail,yahoo-mail

Before considering an alternate email setup, contact SendGrid through support.sendgrid.com, it's possible that Yahoo is wrongly blocking your email. If this is the case SendGrid will advocate for you and work to get it unblocked. Disclaimer: I am a SendGrid Employee...

Automation of email sending process through corporate webmail

ruby,smtp,sendmail,webmail

I faced similar problem. You can configure mailer for particular smtp server like this: options = { :address => "smtp.yourdomain.com", #address can differ :port => 25 } Don't forget to add: config.action_mailer.delivery_method = :smtp Don't need to provide password and username, but remember to specify from field in your email...

How to send HTML-formatted message with standard mail function in PHP

php,webmail

Php Html email <?php $to = "[email protected]"; $subject = "PUT_SUBJECT_HERE"; $mail_body = '<html> <body bgcolor="#573A28" topmargin="25"> Put HTML content here with variables from PHP if you like Variable display Example: ' . $subject . ' <h1>this is a heading</h1> </body> </html>'; //$headers = "From: [email protected]"; //$headers .= "Content-type: text/html"; //...

Postfix MySQL Error 111

mysql,debian,postfix-mta,webmail

Answer! Finally, that didnt take long. If anyone is having this issue, please try this. nano /etc/postfix/mysql-virtual-alias-maps.cf Change the hosts to From : 127.0.0.1 > HOSTNAME e.g. server54 This will enable the connection to the localhost. And show the correct postmap. postmap -q [email protected] mysql:/etc/postfix/mysql-virtual-alias-maps.cf Result? Your email address ([email protected])...

How to solve Quota Warning in Webmail CPanel?

cpanel,quota,webmail

It's so easy. Go to Email Accounts from CPanel. Then Click on Change Quota. Then increase the limit....

Login/authentication system for a website [closed]

php,html,cookies,login,webmail

What you are wanting to do (if i understand correctly) is an EXTREMELY bad idea security wise. If anybody who has worked on their website is worth anything any method you could use for this is already blocked. That being said I can give you a theoretical way of doing...

Basic RoR Webmail [closed]

ruby-on-rails,webmail

You wrote that you wanted to build your own webmail application. Mailyt and mailr are webmail applications. So I assume you want to reuse some of their code for your own project. If you want to build your webmail application in Rails now I think you should use the newest...

After changing name server information, not able to receive email at my domain name's address in gmail

email,gmail,nameservers,webmail,mx-record

Happy to inform that I have found solution for this problem. For receiving mail via google server, you need to update MX Record in your server like this Name/Host/Alias Time to Live (TTL*) Record Type Priority Value/Answer/Destination Blank or @ 3600 MX 1 ASPMX.L.GOOGLE.COM Blank or @ 3600 MX 5...