Tagged Questions
The smtp-auth tag has no wiki summary.
2
votes
1answer
105 views
sending mail from my domain in php
I'm trying to send a mail from my own domain server like xyz@mydomain.com in php.
I can successfully send mail using gmail account with pear package. But, sending messages from my own domain fails.
...
1
vote
1answer
156 views
Sending Authenticated SMTP Using C#
I have purchased an authenticated SMTP package with my hosting company.
I have tested the account settings via Outlook 2010 successfully.
Outlook settings:
Email: me@domain.com
Outgoing SMTP: ...
1
vote
5answers
2k views
Sending emails through SMTP with PHPMailer
I'm trying to send SMTP e-mails using PHPMailer, but I keep getting this error message, any ideas how to get rid of it?
I'm trying to connect via SSL on port 465.
SMTP -> FROM SERVER:
SMTP -> ...
1
vote
1answer
356 views
Validate smtp server credentials using java without actually sending mail
To verify smtp server credentials shall I use transport.connect()?
Session session = Session.getInstance(properties,authenticator);
Transport tr=session.getTransport("smtp");
tr.connect();
Is it ...
1
vote
2answers
11k views
How to resovle javax.mail.AuthenticationFailedException issue?
I am doing a sendMail Servlet with JavaMail. I have javax.mail.AuthenticationFailedException on my output. Can anyone please help me out? Thanks.
sendMailServlet code:
try {
String host = ...
1
vote
3answers
9k views
Exchange server will not accept username/password provided with javax.mail API
I have a lovely little Java client that sends signed email messages. We have an Exchange server that requires username/password authentication to send a message.
When I connect to the exchange ...
1
vote
1answer
426 views
Add SMTP AUTH support to Python smtpd library… can't override the method?
So, I wanted to extend the Python smtpd SMTPServer class so that it could handle SMTP AUTH connections. Seemed simple enough...
So, it looked like I could just start like this:
def smtp_EHLO(self, ...
0
votes
0answers
47 views
Sendmail SMTP AUTH - Users
I have set up SMTP AUTH on Sendmail. It is all working fine with standard usernames like joebloggs, but I want to know if I can set up a username in the following format joe@bloggs.com
I tried: ...
0
votes
2answers
100 views
Smtp authentication (Login Test) without sending email
The currnt need is to perform SMTP authentication using given username, password, and authentication mode(CRAM-MD5, LOGIN, PLAIN).
I just need to perform a Login Test and not send any mail and reply ...
0
votes
1answer
213 views
Bugzilla SMTP authentication
I've installed bugzilla in my local machine (Windows 7) and its working good. But when I try to create a new account it says
There was an error sending mail from it@gmail.com to ra@gmail.com:
...
0
votes
3answers
62 views
How do you send messages from a different address using Gmail and Java?
I'm using Java to send messages from Gmail with Apache Commons Email, but it seems like it doesn't allow me to send messages from an address different from the one that I use to authenticate.
How do ...
0
votes
0answers
61 views
Authentication with Wiser/Subethasmtp in SMTP
Does anyone know how to set up Wiser to force authentication for emails? Right now I have
wiser = new Wiser();
UsernamePasswordValidator validator = new MyValidator();
...
0
votes
0answers
182 views
PHPMailer mails getting rejected by exim after upgrade to WHM/cPanel 11.30
After updating to WHM/cPanel 11.30.0, PHPMailer mails are now being rejected by exim. This is my code:
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Password = ...
0
votes
0answers
682 views
Java Mail doesn't work
I encounter a problem about JavaMail
Originally, I can use my program to send email.
However, after a few days, the program does not work suddenly.
An exception is thrown.
...
0
votes
1answer
55 views
SMTP connection issue
I am having an issue connecting to my local ISP's SMTP server.
Is there anybody who can help me with some of the required commands?
I've tried 'HELO','USER and 'PASS' commands, but I keep getting a ...
0
votes
4answers
196 views
SMTP can accepts emails with false sender name
I'm using SMTPClient for sending emails to a SMTP server. But with Send method I can specify any false sender name or email. How can I prevent this?
0
votes
1answer
300 views
How can I make SMTP authenticated in .NET?
I'm trying to build an email application in Visual Studio 2005 and I'm using .NET's System::Net::Mail::Smtp class to send emails, but I can't figure out how to authenticate SMTP with a server (right ...
-1
votes
2answers
493 views
How do you use authentication with gmail for a PHP contact form?
This is the code that i have working; however i want to incorporate a way to have an smtp authentication using my gmail account but I can't figure it out...help?
<?php
if(isset($_POST['email'])) ...