Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

156
Views
How to send an email to a specific user using emailJS in reactJS

I want to send quotations to specific users that have made a shipment in my react website. I am using emailjs, but it doesn't seem to be working. I want a non server-side way to do this.

here is my code:

const {freight, creatorsEmail} = useLocation().state; //creatoresEmail is the email of the user i want to send the email to.

 function sendEmail(e){
    e.preventDefault()
    
     emailjs.sendForm(
         "xxxxx",
         "xxxxxx",
          creatorsEmail,
         "xxxxx"
     ).then((res) => {
         if(res){
             firebase.firestore().collection("Quotations").add({
                 costPrice:costPrice,
                 sellPrice:sellPrice,
                 creatorsEmail:creatorsEmail,
                 freight:freight
             }).then((result) => {
                 alert("Quotation Sent Successfully")
                 window.location.reload()
             }).catch((e) => {
                alert("An Error Occured, Quotation Cannot be Sent")
                console.log(e)
             })
         }
       
     }).catch((e) => {
         alert("There was a problem")
         console.log(e)
     })
  }

               <Button
                color="primary"
                variant="contained"
                onclick={sendEmail} // in here would this be a correct way of calling the function sendEmail(e)?
              >
                Send Quotation
              </Button>
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!