投稿時間:2022-10-02 11:14:19 RSSフィード2022-10-02 11:00 分まとめ(14件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita Amazon S3 セキュリティとバックアップのベストプラクティス https://qiita.com/c60evaporator/items/ee7def3632eaf493409f amazons 2022-10-02 10:48:38
python Pythonタグが付けられた新着投稿 - Qiita 論文の勉強16 「Transformerベースの時系列予測モデル」 https://qiita.com/tanaka_benkyo/items/00c5eb90101ccb5075d9 transformer 2022-10-02 10:40:21
python Pythonタグが付けられた新着投稿 - Qiita tf.dataのsample_from_datasetsを用いた不均衡データ対策 https://qiita.com/LikeaRooster/items/ff9979f264956de3c583 samplefromdatasets 2022-10-02 10:07:07
AWS AWSタグが付けられた新着投稿 - Qiita Amazon S3 セキュリティとバックアップのベストプラクティス https://qiita.com/c60evaporator/items/ee7def3632eaf493409f amazons 2022-10-02 10:48:38
AWS AWSタグが付けられた新着投稿 - Qiita AWS 構成図作成ツール diagram.net (旧draw.io) https://qiita.com/simis/items/e143389fa371d53b948b httpswww 2022-10-02 10:06:13
海外TECH DEV Community Sending an Email With React Without a Backend Server https://dev.to/benjaminnwokolo/sending-an-email-with-react-without-a-backend-server-32gc Sending an Email With React Without a Backend Server IntroductionIn This Tutorial we are going to learn how to send an email in a React Application Without making use of a backend Language Like PHP Python Golang and The Rest of Backend Languages For us to be able to send an email in react without a Backend we will be making use of Third party Service Called EmailJS EmailJS is a service from which we can send Emails Directly From Javascript Without a server Code EmailJS makes it easily to send an email with javascript and its frameworks Prerequisities Basic Knowledge Of React An Email JS Account An Email Account Steps Step So To be able to make use of EmailJS in our React App we create a free account on emailjs com After Signing up Verify your Email and Then Proceed to Login into your emailjs account Step We have to also add an email service provider on EmailJS from which emails will be sent from To create a new service Click On Email services on Your EmailJS Dashboard Click on Add New Service and choose an email service provider of your choice For the sake of this tutorial we ll be making use of Gmail as a service provider So after Selecting the email service of your choice You Proceed to Connect it with your Gmail Account To Do That click on Connect Account as displayed on the screen After Connecting Your Account Click on Create Service Step Template Creation to be able to send emails we are to create a Template for our emails and to do that we Click on Email Templates in Other to Create an Email template Then Click on “Create New Template and You are Directed to this page which is the default template Understanding Variables on The Templatefrom name it Refers to Sender of the email to name This Refers to the Receiver of the email in this case it means the person to whom you are sending the mail to message it is the main content of your email to email Refers to email address which the email message is been sent to that is the receivers email address Here is an Edited template So After editing your template click on “save in other to save your Template So we are ready to use this template in our React app Step We are Going to Create a Contact Form in React to enable us send an email using template in EmailJS So Head Over to Your Code Editor and Create a form in react Here is my code for a Basic contact form import useRef from react const Email gt const form useRef return lt div class form gt lt div class title gt Contact Us lt div gt lt form ref form gt lt div class input container ic gt lt input id firstname className input type text placeholder Username name to name gt lt div gt lt div class input container ic gt lt input id email className input type text placeholder Email Address name from name gt lt div gt lt div class input container ic gt lt textarea required placeholder Message name message gt lt textarea gt lt div gt lt button type text className submit gt Submit Message lt button gt lt form gt lt div gt export default Email And Here is The CSS Style For This Particular Contact Form But You can Create your own unique CSS style When Creating Yours box sizing border box margin padding body align items center display flex justify content center height vh form background color black border radius px box sizing border box height px padding px width px title color eee margin left px font size px font weight margin top px input container height px position relative width ic margin top px ic margin top px input background color white border radius px border box sizing border box color black font size px height outline padding px px width textarea background color white border radius px border box sizing border box color black font size px height px outline width padding bottom px form label color white background color white submit background color d border radius px border box sizing border box color eee cursor pointer font size px height px margin top px outline text align center width submit active background color b textarea placeholder padding px font size px Here is the Form Displayed in The Browser So now We are to add functionality to this form to enable us send emails using react Step Now Head over to EmailJS Documentation to see how to make use of EmailJs in a React Application by making use of an already made React Code snippets From the Documentation this is How to make use of EmailJS in A React Application using this function import React useRef from react import emailjs from emailjs browser export const ContactUs gt const form useRef const sendEmail e gt e preventDefault emailjs sendForm YOUR SERVICE ID YOUR TEMPLATE ID form current YOUR PUBLIC KEY then result gt console log result text error gt console log error text To make use Of EmailJS in a React App you are to install and import emailjs into your app Installing EmailJSTo be able to install emailjs Headover to new terminal window check directory into the root directory of your project and code npm install emailjs browserAfter installing EmailJS Go to The Component which contains your form and Import EmailJS import emailjs from emailjs browser Step We make use of The function From EmailJS Docs in the component Containing the contact Formimport useRef from react import emailjs from emailjs browser const Email gt const form useRef const sendEmail e gt e preventDefault emailjs sendForm YOUR SERVICE ID YOUR TEMPLATE ID form current YOUR PUBLIC KEY then result gt console log result text error gt console log error text return lt div class form gt lt div class title gt Contact Us lt div gt lt form ref form onSubmit sendEmail gt lt div class input container ic gt lt input id firstname className input type text placeholder Username name to name gt lt div gt lt div class input container ic gt lt input id email className input type text placeholder Email Address name from name gt lt div gt lt div class input container ic gt lt textarea required placeholder Message name message gt lt textarea gt lt div gt lt button type text className submit gt Submit Message lt button gt lt form gt lt div gt export default Email We are calling the sendEmail function when the form is been Submitted onSubmit From This Function The sendFormMethod in the function has Some parameters which are in our EmailJs Account which is Required To Enable us Send an Email Successfullyemailjs sendForm YOUR SERVICE ID YOUR TEMPLATE ID form current YOUR PUBLIC KEY YOUR SERVICE ID To Get Your Service ID Head Over To Email Services on Your EmailJS Account DashboardCopy the Service ID and Replace it with the YOUR SERVICE ID parameter in the functionYOUR TEMPLATE ID To Get Your Template ID Head Over To Email Templates on Your EmailJs Account DashboardCopy the Template ID and Replace it with the YOUR TEMPLATE ID parameter in the function YOUR PUBLIC KEY To Get Your Public Key Head Over To Account on Your EmailJs Account Dashboard Copy the Public Key and Replace it With YOUR PUBLIC KEY Parameter in the function After Replacing the values with all the necessary parameters from Your Personal EmailJs Account Here is how the function should be import useRef from react import emailjs from emailjs browser const Email gt const form useRef const sendEmail e gt e preventDefault emailjs sendForm service ytadh template can form current vnXYDUTUwCjl q then result gt console log result text error gt console log error text e target reset return lt div class form gt lt div class title gt Contact Us lt div gt lt form ref form onSubmit sendEmail gt lt div class input container ic gt lt input id firstname className input type text placeholder Username name to name gt lt div gt lt div class input container ic gt lt input id email className input type text placeholder Email Address name from name gt lt div gt lt div class input container ic gt lt textarea required placeholder Message name message gt lt textarea gt lt div gt lt button type text className submit gt Submit Message lt button gt lt form gt lt div gt export default Email Note e target reset in The function is to Clear the Form after it is been submitted The name Attribute in the input elementof the form Must Be The Same With name of The Variable in Your EmailJS Template Step Now We can Now Proceed to Send an email from the Browser Using the Form After submitting the form The Email is sent immediately Here is my mail sent successfully ConclusionAnd there you have it the email has been sent successfully to my Gmail account So that is how to send an email in ReactJS without a backend Server using EmailJS 2022-10-02 01:34:52
ニュース BBC News - Home Indonesia: More than 120 dead in football stampede https://www.bbc.co.uk/news/world-asia-63105945?at_medium=RSS&at_campaign=KARANGA football 2022-10-02 01:03:13
ニュース BBC News - Home Bruce Willis denies selling rights to his face https://www.bbc.co.uk/news/technology-63106024?at_medium=RSS&at_campaign=KARANGA company 2022-10-02 01:15:26
北海道 北海道新聞 【道スポ】清宮よ、20本狙え BIGBOSS 2日最終戦で2発ノルマ https://www.hokkaido-np.co.jp/article/739447/ bigboss 2022-10-02 10:30:09
北海道 北海道新聞 日米豪、安保戦略共有へ 中国ミサイル発射を強く非難 https://www.hokkaido-np.co.jp/article/739468/ 安保戦略 2022-10-02 10:22:00
北海道 北海道新聞 <興味深人 インタビュー>言語発達遅れの子支援 ことばを育てる親の会北海道協議会会長 福井紀郎さん https://www.hokkaido-np.co.jp/article/739465/ 話し言葉 2022-10-02 10:15:00
北海道 北海道新聞 広島・佐々岡監督が辞任 就任3年連続Bクラス https://www.hokkaido-np.co.jp/article/739459/ 今季限り 2022-10-02 10:12:41
北海道 北海道新聞 ウクライナ、東部要衝リマン奪還 併合宣言直後のロシアに打撃 https://www.hokkaido-np.co.jp/article/739432/ 要衝 2022-10-02 10:10:33
ビジネス 東洋経済オンライン 「連ドラ主演俳優」を送り出す芸能事務所トップ10 地上波連続ドラマを4年半分調べてみた結果 | テレビ | 東洋経済オンライン https://toyokeizai.net/articles/-/622823?utm_source=rss&utm_medium=http&utm_campaign=link_back 所属事務所 2022-10-02 10:30:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)