Using Axis EmailWS-1.6 to send an HTML email - axis2

I am currently limited to the usage of Tomcat with Axis2 and its EmailWS-1.6 webservice to send an email. This has to be an HTML mail.
This is the configuration of EmailWS.properties
Email Service Configuration
(This configuration requires EmailWS-1.6 or later)
contentType=text/html;charset=utf-8
returnAddress=
mail.transport.protocol=smtp
mail.host=
mail.smtp.port=465
mail.smtp.auth=true
mail.smtp.socketFactory.port=465
mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
mail.smtp.socketFactory.fallback=false
mail.smtp.starttls.enable=true
mail.smtp.quitwait=false
authUsername=
authPassword=
I can succesfully send an email, but it seems to arrive as plain text. The email client does not translate it to HTML. What is the proper configuration of Tomcat/Axis2 to do this?

Tomcat Axis2 Email webservices also contains an operation which enables you to send an xml-based email message. By using this operation, I was able to send the HTML email. It was also received as HTML.

Related

Roundcube rest api

is there any REST API for roundcube?
I have this need:
I developed a software where it sends some emails to clients and we need to save the sent mails in the "sent" folder.
I searched a lot and all tutorials say that I have to use the auto_bcc but I need to simulate the client's behavoiur, I mean, when the boss access the "automatic#domain.com" mailbox by using roundcube or another email client, he can see the sent folder and the sent mails (not in the inbox), so I was thinking that if I can connect to roundcube and simulate a mail sending, roundcube will save the mail in the sent folder.
I hope I have explained myself
Thanks
You not specify coding language ... in case you use php, use PHPmailer for send the emails.
PHPmailer use resident email server of your system to operate. This means PHPmailer and Roundcube use same standard (inbox/outbox) folders of each user.
Then simply send the email using phpmailer and the email shown in Sent folder !! Look this message shows as unread in Roundcube, you need to set up a filter inside Roundcube if you want to mark as read and/or move this emails to a specific folder.

Is it legal to send custom request using cookie?

Is it legal to send custom requests using my own cookie? For example if I login to a website that provides e-mails and I found that I can send a request like: somewebpage.com?email_id=1&cookie_token=123 then can I send a custom request using eg app written in c++ to get all my emails (by changing email_id)?

How we can read Xml Response from DocuSign event Notification (DocuSign Connect Functionality) in C#

I have try to Implement Docusign Connect Functionality. I have Enable Docusign Connect functionality. I have create Envelop and Pass the Event Notification object and also configuration is done Admin Connect
Configuration related Setting in Docusign
When Send Mail regarding Sign in (Complete) recipient. and recipient sign in the
document complete. It will call my configuration related url. i didn't understand
how should i received the xml responce in my method.
Success Log Screen
Your app must include a listener HTTPS URL that DocuSign can POST to. This URL must be available on the public internet; it can’t be blocked by a firewall.
See this DocuSign blog post for setting up connect.

Whatsapp send text message url scheme equivalent

When I need to send text message via Whatsapp in a web page, I can use the following url scheme.
send
I want to achieve the same effect using Wechat and QQ. I know the their url scheme start with weixin:// and mqq://. I successfully open the respective app but fail to find a way to send text message. How can I do that?

How to send mail via smtp using ssl in php

How can I send mail via smtp using ssl? We are able to send the simple text mail, but it's not allowing the links or certain tags in the mail to pass, we tried using pear-mail.
Please suggest any options.
We are using third party GMAIL and hosting is in Godaddy. All mx record are fine and earlier we were able to deviver mails when we have not used ssl, also as i mentioned we are able to send the simple text mails with ssl, so please no answers regarding hostings, just any options how to use it with ssl.
You might want to look at phpmailer. You can use phpmailer to send outgoing messages through gmail's SMTP server (smtp.gmail.com), and it has options to connect to the SMTP server by SSL. phpmailer is very simple to setup - just a few PHP files to copy to your server. See https://github.com/PHPMailer/PHPMailer. You can start sending mail using the simple example at the github page above as a boilerplate.