Can we configure the OWASP ZAP report with mail? - zap

I want to configure the zap report to my mail id so that whenever I generate ZAP report it should send it to my mail. Is is possible to do so?

ZAP API can be used to generate reports in html, xml, json and md format. Once you generate report, you could use mailer service to send reports to your email address.

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.

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 a mail to all the domains without configuring mail server

I need to send a mail to any domains(gmail,yahoo) without configuring any mail servers in environment.rb.
Is it possible? if it's NO the how devise_invitable gem is allowing us to trigger the mail?
You can use third party email services like:
http://sendgrid.com/
http://www.mailgun.com/
http://aws.amazon.com/ses/
Though you will still need to specify those in environment files, just that you won't need to manage an email server.

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.

Using Axis EmailWS-1.6 to send an HTML email

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.