を経由して失敗した私は、このコードを使用して、(メールプロバイダのweb.deを使用して)SMTP経由でメールを送信しています:SMTP - メールの送信は、プロキシ(JAVA)
package form.controll;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class NotificationControllerTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void test() {
NotificationController aNotifi = new NotificationController("smtp.web.de", "587");
aNotifi.sendEmail("[email protected]", "[email protected]", "THESENDERSPASSWORD", "New User Registration Notification", "New User has just been registered to blabla");
}
}
これはうまく動作しますが、私が使用している場合
535認証資格無効
- なぜこれが起こるん:PROXYコンテキストで同じ方法で、 私は常にエラーを取得しますか? - メール送信の修正方法