КОМЕНТАРІ •

  • @abhiramips2124
    @abhiramips2124 2 роки тому

    Can you please help out with the smtp url for outlook

    • @taskincomplete
      @taskincomplete 2 роки тому

      Hi Abhiram, Outlook is the software which is used to connect your email engine, to which email engine you are connecting with outlook, is it Microsoft,google or an other

    • @abhiramips2124
      @abhiramips2124 2 роки тому

      It's for workplace outlook

    • @taskincomplete
      @taskincomplete 2 роки тому

      Hi Abhiram below are SMTP details for Outlook email engine
      SMTP server : smtp://smtp-mail.outlook.com
      SMTP port : 587
      SMTP encryption: STARTTLS

  • @VishnuVardhan-iz4he
    @VishnuVardhan-iz4he 2 роки тому

    Hello sir..how can we send the parameterised/correlated data in text message.Please help me with it made my work stop.

    • @taskincomplete
      @taskincomplete 2 роки тому

      for parameterization in smtp_send_mail function we have attribute which is "MessageText = actual message" now replace that with
      lr_eval_string("MessageText=your simple message with parameter name {parameterName}"),
      actual function is looks like below :
      smtp_send_mail( "SendMail",
      "To={toMail}",
      "Cc={toMail}",
      "From={fromEmail}",
      "Subject=",
      "ContentType=text/plain;",
      "charset=\"iso-8859-4\"",
      "MAILOPTIONS",
      "X-Priority: 3",
      "X-MSMail-Priority: Normal",
      "X-Mailer: Microsoft Outlook Express 5.00.2919.6700",
      "X-MieOLE: Produced By Microsoft MimeOLE V5.00.2919.6700",
      "MAILDATA",
      // "MessageText=",
      lr_eval_string("MessageText=your simple message with parameter name {parameterName}"),
      LAST );

    • @VishnuVardhan-iz4he
      @VishnuVardhan-iz4he 2 роки тому

      Thank you so much sir..You made my day 👍