Posts

Showing posts with the label gmail

Unable to send mails from server getting error Our system has detected that this message is 550-5.7.1 likely unsolicited mail

Image
Unable to send mails from server getting error Our system has detected that this message is 550-5.7.1 likely unsolicited mail Getting "Our system has detected that this message is 550-5.7.1 likely unsolicited mail.To reduce the amount of spam sent to Gmail, 550-5.7.1 this message has been blocked.",connection timed out, delivery temporary suspended error message while sending to gmail users. mails are being delayed on other email users as well. can any one please guide me on this. /var/log/maillog image which shows error: Are these account level emails or newsletter type things? – castis Jun 29 at 12:57 Do you have an SPF Record set up? What about DKIM? Are you using authenticated SMTP? Are you sending spam ? – Mr Glass Jun 29 at 12:57 ...

how to direct open Gmail mail composer in android?

how to direct open Gmail mail composer in android? I am using the following code. Problem it that when I run this code on device. It open a Dailogbox that hase 3 options for sending a mail. "POP , email , gmail" etc. By clicking the gamil the composer appear. I just want to show Gamil mail composer directly. Instead of showing a dailog box for choosing the options. Please help me. Intent emailIntent = new Intent(Intent.ACTION_SEND); emailIntent.setType("text/html"); String subject = "My Subject"; emailIntent.putExtra(Intent.EXTRA_SUBJECT, subject); emailIntent.setType("text/html"); String title = "<p align='center'>" + storyTitle + "<br/>" + storyPubDate + "</p>"; String data = "<p> Sent From ABC APP Sent from my Android </p>"; emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(title + data)); startActivity(Intent.createChooser(emailInt...