class URI::MailTo
RFC6068, the mailto URL scheme.
Constants
- EMAIL_REGEXP
Public Class Methods
(Array[String]) → instance
([ String, Array[Array[String]] ]) → instance
(Hash[Symbol, String | Array[Array[String]]]) → instance
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 39
def self.build: (Array[String]) -> instance
| ([String, Array[Array[String]]]) -> instance
| (Hash[Symbol, String | Array[Array[String]]]) -> instance
Description
Creates a new URI::MailTo object from components, with syntax checking.
Components can be provided as an Array or Hash. If an Array is used, the components must be supplied as [to, headers].
If a Hash is used, the keys are the component names preceded by colons.
The headers can be supplied as a pre-encoded string, such as "subject=subscribe&cc=address", or as an Array of Arrays like [['subject', 'subscribe'], ['cc', 'address']].
Examples:
require 'uri' m1 = URI::MailTo.build(['joe@example.com', 'subject=Ruby']) m1.to_s # => "mailto:joe@example.com?subject=Ruby" m2 = URI::MailTo.build(['john@example.com', [['Subject', 'Ruby'], ['Cc', 'jack@example.com']]]) m2.to_s # => "mailto:john@example.com?Subject=Ruby&Cc=jack@example.com" m3 = URI::MailTo.build({:to => 'listman@example.com', :headers => [['subject', 'subscribe']]}) m3.to_s # => "mailto:listman@example.com?subject=subscribe"
Public Instance Methods
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 46
def headers: () -> Array[[String, String]]
E-mail headers set by the URL, as an Array of Arrays.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 54
def headers=: (String) -> String
Setter for headers v.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 59
def to: () -> String
The primary e-mail address of the URL, as a String.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 67
def to=: (String) -> String
Setter for to v.
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 83
def to_mailtext: () -> String
Returns the RFC822 e-mail text equivalent of the URL, as a String.
Example:
require 'uri' uri = URI.parse("mailto:ruby-list@ruby-lang.org?Subject=subscribe&cc=myaddr") uri.to_mailtext # => "To: ruby-list@ruby-lang.org\nSubject: subscribe\nCc: myaddr\n\n\n"
() → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/uri/0/mailto.rbs, line 90
def to_rfc822text: () -> String