/ /どのように私はワードプレスのウェブサイトのためのSMTP資格情報を作成しますか? - ワードプレス、SMTP

どのように私はWordPressのWebサイトのSMTP資格情報を作成するのですか? - ワードプレス、smtp

私はSMTPメールサーバについて知らない。フォームデータを得るために私のワードプレスウェブサイトのためにこの資格情報を必要とする。誰もがこれを説明できる ここに画像の説明を入力

回答:

回答№1は0

WordpressはSMTPメールサーバを使って電子メールを送信したいと考えています。持っていないので、Googleのメールサーバーを使うことができます(方法をここで見ている)。


回答№2の場合は0

このプラグインを試してください https://wordpress.org/plugins/blastex/ そして、ローカルSMTPサーバーなしでEメールを送信してください:)

< ?php
!!! Enable first in php.ini config file socket extension. Read more in plugin admin panel after activation !!!

$to = "hello@emal.com, hello@boom.com";
$subject "Hello from email client";
$html = "Hello message from smtp !!!

Message from wordpress plugin!

";

// Install and activate plugin and send emails
$ok = wp_mail($to, $subject, $html);

// Show error
echo get_option("blastex_error");

?>